Maxime Coste
fc3a1b6973
Make arrow keys normal mode mappings instead of commands
2019-09-15 19:40:38 +10:00
Maxime Coste
09c514901d
Update json_ui documentation to match current protocol
2019-08-20 22:10:20 +10:00
tawsi-melek
69eec33491
Fixed some English typos
2019-08-04 00:45:19 +02:00
Joachim Henke
2cc92e8ff1
function keys need to be provided in upper case now
2019-07-07 18:44:14 +02:00
Joachim Henke
556d58a073
allow for mapping the Insert key
2019-07-07 18:38:46 +02:00
Joachim Henke
4c61f82fb2
fix a few typos
2019-07-06 17:37:30 +02:00
Maxime Coste
2ff9fd8d92
Kakoune v2019.07.01
2019-07-01 22:07:29 +10:00
Maxime Coste
8346050232
Document function key syntax change in changelog
2019-06-29 09:56:28 +10:00
codesoap
ca2741fe20
Rename ModuleLoad hook to ModuleLoaded
...
This clarifies, that the hook is run *after* the module is loaded.
2019-06-25 19:16:47 +02:00
Maxime Coste
a9e778fcc7
Add support for echo -quoting (raw|kakoune|shell)
switch
2019-06-23 12:04:21 +10:00
Maxime Coste
95da8cbc8f
Document $kak_quoted_...
2019-06-23 12:04:21 +10:00
Olivier Perret
35c8ca6977
[doc] Fix some typos
2019-05-12 22:56:38 +02:00
Tim Allen
a7807b962e
Document the %val{error} expansion.
2019-05-02 19:55:41 +10:00
Maxime Coste
0cc89b2b9f
Merge remote-tracking branch 'laelath/provides-requires'
2019-04-25 11:59:42 +01:00
Maxime Coste
4e24ba86cc
Change faces alias to be a base that can be modified
...
Using <fg>,<bg>+<attr>@<base> will apply the given fg color,
bg color and attributes on top of base dynamically. Simply giving
<base> is a shorthand for default,default@<base>.
Inspired by the discussion in #2862
2019-04-23 23:15:23 +01:00
Delapouite
4ce37c1211
doc: move aliases explanation from README to commands.asciidoc
2019-04-19 23:13:23 +02:00
Maxime Coste
06d4ee578e
Update changelog
2019-04-17 08:38:52 +02:00
Maxime Coste
78419bc76f
Remove InsertCompletionSelect hook
2019-04-17 08:38:52 +02:00
Maxime Coste
9118a18d5d
Change completions option docstring element to be an arbitrary command
...
We can have the previous behaviour by just passing the docstring to
`info -placement menu`.
2019-04-17 08:38:52 +02:00
Maxime Coste
02fc42a12a
Rename info -placement to info -style and support modal style
...
Fixes #1375
Closes #1380
2019-04-17 08:38:52 +02:00
Maxime Coste
ace499ecb1
Pass selected completion text to InsertCompletionHide
2019-04-16 15:56:07 +02:00
Justin Frank
f49644e8ee
Fix typo in documentation and clarify override behaviour
2019-04-15 12:53:45 -07:00
Maxime Coste
0bff4851d9
Support '-placement menu' switch in the info command
...
Expose insert completion menu documentation via the info command.
2019-04-15 17:22:48 +02:00
Maxime Coste
6b79c1e000
Support named captures in hooks
...
Fixes #2857
2019-04-15 23:56:49 +10:00
Justin Frank
891c6ca8e2
Fix typo in changelog
2019-04-08 17:08:35 -07:00
Justin Frank
93ced79f37
Updated the changelog, commands, and hooks docs to be clearer
2019-04-08 17:06:56 -07:00
Justin Frank
87bcf23f3e
Added module system to changelog, commands, and hooks doc files
2019-04-08 17:06:56 -07:00
Maxime Coste
69663bdc81
Update changelog
2019-04-08 22:19:17 +10:00
Maxime Coste
c8839e7904
Add a ClientCreate and ClientClose hook
...
As discussed in #2830 .
Closes #2500 .
2019-04-08 21:59:32 +10:00
Maxime Coste
08f1a471fd
Merge remote-tracking branch 'elasticdog/current-option-values'
2019-04-07 21:08:48 +10:00
Maxime Coste
deff8f2b8e
Merge remote-tracking branch 'Frojdholm/fix-typo-highlighters'
2019-04-07 13:40:41 +10:00
Maxime Coste
d0df1ffe71
update version notes and changelog
2019-04-07 09:51:27 +10:00
Maxime Coste
41f19f8dc9
Add support for %file{...} expansions
...
This should make the use case exposed in #2836 implementable.
2019-04-07 09:43:40 +10:00
Maxime Coste
744778be30
Add a -to-file <filename> switch to the echo command
...
As discussed in #2836
2019-04-07 09:32:17 +10:00
Hampus Fröjdholm
1046e3d4d5
Fix typo highlighters docs
2019-04-04 04:48:27 +02:00
Bruno Heridet
b40eeae6e3
doc: add precision about -buffer switch on eval/exec
...
Relevant filter in the code:
```
if (*bufnames == "*")
{
for (auto&& buffer : BufferManager::instance()
| transform(&std::unique_ptr<Buffer>::get)
| filter([](Buffer* buf) { return not (buf->flags() & Buffer::Flags::Debug); })
| gather<Vector<SafePtr<Buffer>>>()) // gather as we might be mutating the buffer list in the loop.
context_wrap_for_buffer(*buffer);
}
```
2019-03-26 19:34:23 +01:00
Maxime Coste
b531bab1ce
Add support for -shell-script-* completion in :prompt
...
Fixes #2754
2019-03-24 19:28:46 +11:00
Tim Allen
066217ad4b
doc: The faces doc should list all the supported color names.
2019-03-23 11:38:21 +11:00
Maxime Coste
cf0458e734
Add cursor_display_column expansion
...
Fixes #2788
2019-03-23 11:32:32 +11:00
Maxime Coste
830dd2b619
Update changelog to notify change in rc/ hierarchy
2019-03-21 22:03:11 +11:00
Aaron Bull Schaefer
ada4e01f97
Document how to view the current value for options
2019-03-18 08:27:08 -07:00
Maxime Coste
af38d9230c
Merge remote-tracking branch 'Screwtapello/document-edit-flags'
2019-03-13 06:50:15 +11:00
Maxime Coste
7c5831780b
Fix typo
...
Thanks to occivink
2019-03-05 21:07:49 +11:00
Maxime Coste
e65a7f1310
Merge branch 'patch-1' of https://github.com/bugabinga/kakoune
2019-03-05 20:51:04 +11:00
Maxime Coste
ffb1813759
Merge remote-tracking branch 'krobelus/write-all-note-modified'
2019-03-05 20:50:15 +11:00
Maxime Coste
2fa78d720f
Merge remote-tracking branch 'eraserhd/tmux-mac-color-fix'
2019-03-05 20:49:19 +11:00
Maxime Coste
4843149b6a
Make error description available as "%val{error}" during catch blocks
...
Fixes #2761
2019-03-05 20:46:23 +11:00
Jason Felice
f140b01b5b
Notes on true color and Mac OS
2019-03-02 22:53:15 -05:00
Johannes Altmanninger
b849099472
Document that write-all only writes modified buffers
2019-02-25 10:59:45 +01:00
Oliver Jan Krylow
b36ece46c4
rename auto_complete -> autocomplete in docs
2019-02-24 10:45:38 +00:00