Skip to content
#

kakoune

Here are 260 public repositories matching this topic...

Screwtapello
Screwtapello commented Feb 4, 2020

Since Kakoune's quoting system was reworked, it's pretty easy to reliably quote Kakoune strings by just doubling apostrophes. In shell, it looks something like this:

kakquote() {
    printf "'"
    printf "$*" | sed "s/'/''/g"
    printf "'"
}

However, while working on #3336, I've copied and pasted this fragment into three or four shell blocks already; I expect it (or

Delapouite
Delapouite commented Oct 11, 2019

Hello

Almost all plugins that I know of have a README.md file at their root.

So what about a plug-doc command, that would have the all the installed plugins as auto-completion and would automatically opens the associated README.md ?

Example:

:plug-doc<space>

I select ul/kak-lsp for instance, then press Enter, Kakoune opens kak-lsp's README.md

Bonus:

Whe

joeitu
joeitu commented Mar 20, 2020

Hello,
I think most of people expect from snippet plug to have to following behavior:
type for then press a key so the for expand to

for $X in $COL:
    $BODY

and then press another key ( usually tab) to move from $X to $COL to $BODY.

I think this the default way of using snippet, but it's really not clear how to do that in the doc. I feel this should be inside the `##Us

Improve this page

Add a description, image, and links to the kakoune topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the kakoune topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.