Maxime Coste
4f60a828cd
Merge remote-tracking branch 'ericv8v9s/master'
2023-07-03 20:06:01 +10:00
Maxime Coste
74b0bf6c9e
Merge remote-tracking branch 'GrantMoyer/patch-1'
2023-07-03 20:04:00 +10:00
Eric
a9b52b315c
Fixed lisp highlighter marking everything as variable
2023-07-01 15:27:13 +08:00
Grant Moyer
7115858093
Quote doc file path in doc-render command
...
Without quoting the file path,
the `doc` command fails to display any docs with spaces or backslashs (on Cygwin) in their paths.
2023-06-23 12:38:19 -04:00
Evan Lloyd New-Schmidt
c1e6fe4ca1
Add standard SQL comments
2023-06-21 16:48:24 -07:00
Maxime Coste
18d4c40f08
Fix c-family closing brace indent behaviour on some corner cases
2023-06-15 17:42:19 +10:00
Maxime Coste
4106791adc
Fix windowing detection echoing last module error if none matched
...
Display a more general message in the debug buffer.
2023-06-13 17:08:42 +10:00
Bob Qi
365fe58826
fix arg quoting
2023-06-09 17:57:48 +08:00
Bob Qi
b64dce3e95
rc/windowing/wezterm.kak
2023-06-09 15:43:07 +08:00
Maxime Coste
6bee11c7dd
Merge remote-tracking branch 'QiBaobin/kakrc-hl'
2023-06-05 20:13:07 +10:00
Maxime Coste
0338294223
Merge remote-tracking branch 'greenfork/hare-comment-insert'
2023-06-05 20:11:23 +10:00
Dmitry Matveyev
caf6f6ff7e
hare.kak: change back the command
...
Previously was changed in
https://github.com/mawww/kakoune/pull/4785
Probably some race condition that right now works with a big letter P?
2023-06-04 09:49:52 +06:00
Johannes Altmanninger
b7e9d9bae3
rc detection modeline: optimize modeline pre-filtering
...
modeline-parse leads by matching an expensive regex against the entire buffer,
which can take a long time on huge files.
Perl takes too long on this regex and it seems not even ripgrep
optimizes the \z component
$ ruby -e '10000.times { puts "a" * 10000 }' > big
$ time rg --multiline --only-matching '\A(.+\n){1,5}|(.+\n){1,5}\z' big | wc -l
10
__________________________
Executed in 419.81 millis
usr time 399.84 millis
sys time 20.78 millis
where
$ time kak big -e q
__________________________
Executed in 179.19 millis
usr time 133.61 millis
sys time 53.50 millis
Let's lose the regex.
Fixes #4911
2023-06-02 22:38:32 +02:00
Bob Qi
acaca4955e
add Highlight for complete-command shell-script
2023-06-02 15:31:41 +08:00
Maxime Coste
7f950bc4a9
git.kak: Use gawk's strftime instead of shelling out to date
...
`date -d` is not posix, strftime neither, but at least we only rely
on one non-posix tool and avoid forking.
Should help a bit for #4847
2023-05-30 13:01:56 +10:00
Maxime Coste
375a3c87df
Merge remote-tracking branch 'jtrv/grep-kak-literal-string-matching'
2023-05-15 21:22:56 +10:00
Maxime Coste
a69be6288c
Merge remote-tracking branch 'poweredbypie/master'
2023-05-10 20:08:12 +10:00
Maxime Coste
4a8b24bb8c
Merge remote-tracking branch 'razcore-rad/godot4-gdscript'
2023-05-10 20:01:49 +10:00
Maxime Coste
bdc459e666
Merge remote-tracking branch 'arrufat/improve-python-insert-on-new-line'
2023-05-10 20:01:08 +10:00
Maxime Coste
83753b7f94
Merge remote-tracking branch 'm-kru/troff_pic'
2023-05-10 20:00:36 +10:00
Maxime Coste
e74424d889
Merge remote-tracking branch 'Frojdholm/rc-windowing-kitty-window-id'
2023-05-10 19:54:12 +10:00
Johannes Altmanninger
94e3ea9687
rc windowing wayland/x11: do not pollute terminal environment
...
The x11-terminal command spawns a potentially long-lived terminal
process. The terminal can is completely independent of the Kakoune
session that created it.
Due to how it's implemented, the spawned terminals will have
environment variables "kak_opt_termcmd" and "kak_quoted_reg_a"
set. This can be surprising, especially since, by convention, the
environment contains no lowercase variables. Let's stop exporting them.
2023-05-09 11:32:37 +02:00
Hampus Fröjdholm
7c54de2334
Match against kitty window id directly when using kitty @ launch
...
When launch matches using `id` kitty tries to match against tab id
before matching windows. When there are multiple tabs it's likely to
match a tab before matching a window.
Use `window_id` directly to avoid any possiblity of matching tabs.
This is only needed for `kitty @ launch` for other commands there is
no specific `window_id` field.
2023-05-07 17:06:09 +02:00
Johannes Altmanninger
be7a0695a8
rc: move remaining comment insertion hooks to *-insert group
...
This continues the work started by 0a9c90fec
(rc: use a separate
*-insert hook to auto-insert comments, 2021-04-17).
The one that's left is Rust but that one is trickier.
2023-05-03 19:36:50 +02:00
JacobTravers
cac2167540
case directly to $kak_opt_grepcmd
2023-04-06 10:20:52 -07:00
Michał Kruszewski
0a2541f73a
troff filetype: Add support for pic syntax highlighting
2023-04-06 09:30:53 +02:00
JacobTravers
d8b9b13d07
apply literal flag according to grep tool
2023-04-05 15:34:37 -07:00
Adrià Arrufat
cea35cf5f4
Delete commenting prefix on empty lines in Python
2023-04-02 21:09:57 +09:00
JacobTravers
4d9b853561
Use grep -F when no argument is passed (literal string match)
...
Why?
Most users who pass the current selection to grep likely do not intend to pass
the selection as a regex input string.
This makes the grepcmd use an additional -F flag to perform literal-string
matching for the current selection. The -F flag seems to be the standard flag
for literal-string matching in every grep implementation I've found.
2023-03-31 14:11:14 -07:00
Răzvan C. Rădulescu
1e597eb010
fix improper set/get = highlight for Godot v4.x GDScript
2023-03-25 07:14:34 +02:00
Răzvan C. Rădulescu
6ff293ad3a
Add missing in
to Godot v4.x GDScript keywrods
2023-03-24 09:16:53 +02:00
Răzvan C. Rădulescu
1882d76392
Add unique names (%NodeName) highlight for Godot v4.x GDScript
2023-03-22 06:24:23 +02:00
Răzvan C. Rădulescu
0e298ca62e
Clean up Godot 4.x GDScript highlights & fix const highlight overtaking numbers
2023-03-20 12:52:23 +02:00
Răzvan C. Rădulescu
d6326f609c
Highlight all uppercase words for constants & enums Godot v4.x GDScript
2023-03-20 07:31:08 +02:00
Răzvan C. Rădulescu
80f0cda8b5
Update GDScript highlighting for Godot v4.0
2023-03-19 18:55:27 +02:00
PoweredByPie
db348bc6b3
rc/filetype/svelte.kak: Set buffer rather than window filetype
2023-03-14 23:02:53 -07:00
Maxime Coste
86dc4130e1
Merge branch 'fix/hare-comment-insert' of http://github.com/stacyharper/kakoune
2023-03-13 21:38:01 +11:00
Maxime Coste
58ead47fb4
Merge remote-tracking branch 'krobelus/tmux'
2023-03-13 21:33:31 +11:00
Bob Qi
4f0334c476
add zellij-action command
2023-02-26 07:29:39 +08:00
Bob Qi
02bc786fb7
remove the option and provide session name explictly
2023-02-24 12:21:16 +08:00
Bob Qi
f33126c2a9
give up to wrap command into a shell to avoid conflict with connect.kak
2023-02-22 15:57:22 +08:00
Bob
4ff5de6273
Create zellij.kak
2023-02-22 13:17:04 +08:00
Maxime Coste
6b7ed51be1
Merge branch 'hare-packed' of http://github.com/stacyharper/kakoune
2023-01-27 11:26:17 +11:00
Maxime Coste
9763ce4fe9
Merge remote-tracking branch 'razetime/master'
2023-01-27 10:58:32 +11:00
Maxime Coste
247e4885e8
Merge remote-tracking branch 'm-kru/troff_headings_highlighting'
2023-01-18 07:46:36 +11:00
razetime
b794855c70
add APL highlighting
2023-01-14 11:04:16 +05:30
Adrià Arrufat
f92df3ec96
Add reset to git command docstring
2023-01-06 00:17:38 +09:00
Stacy Harper
8c4b591a9e
Add @packed to hare highlighter
...
ref: https://todo.sr.ht/~sircmpwn/hare/783
2023-01-02 20:38:12 +01:00
Michał Kruszewski
dddadce7e8
troff filetype: Fix headings highlighting
2022-12-30 21:45:17 +01:00
Răzvan C. Rădulescu
86bd4efd25
Add Python f-string interpolation highlights
2022-12-17 10:08:33 +11:00