1
1
mirror of https://github.com/mawww/kakoune.git synced 2024-08-16 16:20:38 +03:00
Commit Graph

10483 Commits

Author SHA1 Message Date
Maxime Coste
fe8f0f3371 Merge remote-tracking branch 'Icantjuddle/master' 2024-06-12 19:55:34 +10:00
Ben Judd
faf83b10e2 Switch to bitfield. 2024-06-11 08:33:35 -07:00
Maxime Coste
5a6fb51bdb Tweak python block command test location and remove wall of text
We do not typically go into lengthy explanation of the code in the
support scripts. This would have a performance impact (as comments
are not trimmed in advance) and feels out of place.
2024-06-11 19:39:07 +10:00
Maxime Coste
17c25cc86a Merge remote-tracking branch 'sjjf/python_comment_paras' 2024-06-11 19:33:33 +10:00
Coleman McFarland
a35a7dc4a4
Fix up %val{buflist} description in expansions.asciidoc
The output is not quoted by default. Fixes #5158
2024-06-10 19:43:08 -04:00
Ben Judd
9c185249a2 Fix build by moving include. 2024-06-07 17:54:06 -07:00
Ben Judd
2754e27cf2 Increase SSO from 22 to 23 chars. 2024-06-07 17:48:07 -07:00
Simon Fowler
9c9aa2cf95 Support paragraph breaks in python block comments.
The current python filetype module treats a single empty comment line
(typically created by hitting enter twice while in a block comment) as
the end of a block comment, deleting the empty comment and ending
comment prefix copying. This runs contrary to PEP8, which explicitly
allows for paragraphs in block comments, with an empty comment as the
paragraph separator.

This change implements support for using a single empty comment as a
paragraph separator, with two consecutive empty comments being treated
as the end of the block comment; both empty comment lines are deleted
and comment prefix copying is ended.
2024-06-07 20:33:17 +10:00
Maxime Coste
c93cb5c4d8 Add a fifo helper command and refactor make and grep to use it
Running arbitrary commands in a fifo is very useful in its own right
and factoring out the common pattern is a nice added cleanup.
2024-06-07 19:03:50 +10:00
Maxime Coste
1bdae3f9c4 Also check shell parameters for kak_* references
This makes it easier to pass shell fragments as arguments so that
%sh{ eval "$@" } just works even if arguments refer to Kakoune's
vars.
2024-06-07 18:59:30 +10:00
Maxime Coste
688e87d668 Add rc/filetype/perf.kak for perf-report highlight 2024-06-06 09:46:37 +10:00
Tobias Pisani
1c352e996c Add <quote> and <dquote> key name aliases.
These two can also be annoying to have to escape, so this should make it slightly easier to manage
2024-06-05 20:02:38 +10:00
Maxime Coste
51ec633718 Echo an information message about *scratch* buffer and leave it empty
Having to manually clear the scratch was never really nice and hopefully
this will be less annoying and as helpful to newcomers.
2024-06-05 19:49:35 +10:00
Maxime Coste
727d2391c7 Small regex code cleanup 2024-05-31 12:38:47 +10:00
Maxime Coste
5c97efacb9 Add v< and v> to scroll cursor to the leftmost/rightmost column 2024-05-31 12:38:28 +10:00
Maxime Coste
e6a70e621d Merge remote-tracking branch 'QiBaobin/git-completer' 2024-05-29 21:45:39 +10:00
Maxime Coste
83be9a03bc Merge remote-tracking branch 'dontlaugh/debug_mapping_output' 2024-05-29 21:44:07 +10:00
Maxime Coste
599a605f28 Merge remote-tracking branch 'dontlaugh/patch-1' 2024-05-29 21:41:50 +10:00
Maxime Coste
0aa6665154 Merge remote-tracking branch 'dontlaugh/patch-2' 2024-05-29 21:41:47 +10:00
Maxime Coste
3878c56f8d Merge remote-tracking branch 'm-kru/typst' 2024-05-29 21:39:24 +10:00
Michał Kruszewski
6d2b57d0ca tcl: Highlight variables as variables, not as values 2024-05-26 09:04:28 +02:00
Michał Kruszewski
6a853716c9 typst: Add typst.kak for typst markup highlighting 2024-05-23 15:01:26 +02:00
Coleman McFarland
2c1e238a0c
doc: declare C++20 as the language version
Technically we seem to be compiling with `-std=c++2a` which (if I
understand correctly) is "all the features we have from 23 and up.

But 20 is the earliest version that compiles for me (with clang). 14 and 17 didn't work.
2024-05-22 19:18:47 -04:00
Coleman McFarland
7818ea0cbb Add right hand side mapping to "debug mappings" 2024-05-22 18:45:54 -04:00
Coleman McFarland
52d264df27 doc: clarify that C and <a-C> act column-wise 2024-05-22 18:24:00 -04:00
Maxime Coste
1bd50261c8 Kakoune 2024.05.18 2024-05-18 14:43:06 +10:00
Johannes Altmanninger
7a90473267 Revert "Make TerminalUI::get_next_key() helpers static"
On macOS, backspace reportedly no longer works after <c-z> and fg.
The value of m_original_termios.c_cc[VERASE] seems to be wrong
in a static lambda that captures a singleton "this".
Not sure what's the problem. I thought that it is guaranteed that
"static auto convert = [this]() { ... }" is initialized lazily,
hence it should capture the correct address. Maybe the address
changes somehow or it's UB / a compiler bug.

This reverts commit ad36585b7a

Closes #5155
2024-05-18 11:35:48 +10:00
Chris Webb
4e5631daf3 Handle binary path detection errors on non-/proc platforms
On FreeBSD and NetBSD, sysctl() can return -1 when the path is too long,
leaving the buffer unitialised.

On macOS, both _NSGetExecutablePath() and realpath() can fail with
pathological paths or if memory is exhausted.

On Haiku, the kak_assert(status == B_OK) check will be compiled out in
non-debug builds.

Detect all of these cases and error out, reshaping get_kak_binary_path()
to avoid multiple repetitions of the same fatal error message.
2024-05-12 21:59:56 +10:00
Chris Webb
97a5d68adf Fix error handling when reading binary path from /proc
On Linux, Hurd, Cygwin, DragonFly BSD and Solaris/Illumos, Kakoune obtains
a path to its binary by reading the appropriate /proc symlink target.
readlink() can fail or it can fill the entire buffer, silently truncating
the path if the buffer is too small.

kak_assert() is compiled out in non-debug builds so we ignore a readlink()
failure, corrupt the stack by writing to buffer[-1] then return a string
from the uninitialised buffer.

If readlink() succeeds and the binary path is sizeof(buffer) long, we write
a \0 terminator beyond its end. If it is longer, we also truncate the path.

Throw a fatal error on startup in all these unlikely failure cases.
2024-05-12 21:59:52 +10:00
Maxime Coste
0e92b3fdef Fix another case where git tests were hanging 2024-05-12 14:18:17 +10:00
Maxime Coste
7be22f1ec2 Fix tests for OpenBSD
Using the diff provided by @krobelus on #5173

Close #5173
2024-05-12 11:14:17 +10:00
Maxime Coste
8c2775f665 Fix tests that were failing on alpine
Ensure perl exists for git blame tests, replace timing sensitive
`ui_out -ignore ...` with `ui_out -until '...'`
2024-05-10 12:07:45 +10:00
Maxime Coste
b4a485a1e4 Fix release directory name and version file location 2024-05-09 21:01:53 +10:00
Maxime Coste
8bb0f44c2b Kakoune 2024.05.09 2024-05-09 20:15:32 +10:00
Maxime Coste
1c71fc0c09 Add local scope to user commands 2024-04-29 12:21:02 +10:00
Maxime Coste
e8ad943532 Ensure re-used fifo buffers makes that buffer the latest opened 2024-04-27 16:31:40 +10:00
Maxime Coste
da1c302a37 Make grep-(next|prev)-match use the latest buffer matching \*grep(-.*)\* 2024-04-27 16:31:40 +10:00
Maxime Coste
5fd9bb59e3 Add buffer -matching switch 2024-04-27 16:31:40 +10:00
Johannes Altmanninger
aad0c7cef8 Don't capture local-scoped faces in prompt
ASan shows that we resolve a face spec owned by a freed stack variable.

    =================================================================
    ==2263300==ERROR: AddressSanitizer: stack-use-after-return on address 0x7a9316c33918 at pc 0x633ea421d8ea bp 0x7ffca001e980 sp 0x7ffca001e970
    READ of size 8 at 0x7a9316c33918 thread T0
        ...
        #6 0x633ea421d8e9 in Kakoune::FaceRegistry::resolve_spec(Kakoune::FaceSpec const&) const src/face_registry.cc:128
        ...

    Address 0x7a9316c33918 is located in stack of thread T0 at offset 2328 in frame
        #0 0x633ea427a095 in operator() src/commands.cc:2267

      This frame has 26 object(s):
        [32, 36) '<unknown>'
        ...
        [544, 560) 'disable_hooks' (line 2269)
        ...
        [928, 2432) 'local_scope' (line 2271) <== Memory access at offset 2328 is inside this variable
2024-04-27 16:29:57 +10:00
Johannes Altmanninger
ab2ecf423e Adjust test/highlight/rust/value
A recent commit highlights char literals as value (default red)
instead of yellow.
2024-04-27 16:29:57 +10:00
Coleman McFarland
f9b2f818c0 Coleman E. McFarland Copyright Waiver
I dedicate any and all copyright interest in this software to the
public domain.  I make this dedication for the benefit of the public at
large and to the detriment of my heirs and successors.  I intend this
dedication to be an overt act of relinquishment in perpetuity of all
present and future rights to this software under copyright law.
2024-04-25 21:16:17 -04:00
Bob Qi
912ac1550a add add to the git completer 2024-04-24 14:27:34 +08:00
Maxime Coste
5d2b8351a6 Merge remote-tracking branch 'm-kru/rust' 2024-04-20 16:07:07 +10:00
Maxime Coste
63addb7faa Use a nested command completer for the evaluate-commands command 2024-04-19 15:40:33 +10:00
Maxime Coste
b4fbfba246 Complete complete-command completer type 2024-04-19 15:36:23 +10:00
Michał Kruszewski
8870c7e1f0 rust: Highlight char and byte literals as values
Char and byte literals are values.
There is no point in using fixed colors for them.
2024-04-16 19:19:12 +02:00
Maxime Coste
3d7d0fecca Introduce "local" scope in evaluate-commands
When using `eval` a new scope named 'local' gets pushed for the
whole evaluation, this makes it possible to temporarily set
an option/hook/alias...

Local scopes nest so nested evals do work as expected.

Remove the now trivial with-option command
2024-04-12 15:28:40 +10:00
Maxime Coste
b1c114bf6d Make removing an unknown highlighter an error
Fail instead of silently doing nothing, this makes it easier to
toggle highlighters using a try/catch
2024-04-12 15:28:40 +10:00
Maxime Coste
7f556c1e87 Rotate through strings when pasting instead of repeating the last
This seems like a better overall behaviour.

Closes #5135
2024-04-12 15:28:22 +10:00
Maxime Coste
e34735a350 Add missing <bit> include 2024-04-01 11:41:50 +11:00