David Sierra DiazGranados
David Sierra DiazGranados
> It would be nice to setlocal conceallevel=3 afterwards but I didn't manage to do it. You could use: `call timer_start(1, {-> execute('setlocal conceallevel=3')})`
Is this working? I have in my `after/ftplugin/javascript.vim`: ```viml set matchpairs+=`:` "set matchpairs? -> matchpairs=(:),{:},[:],,`:` ``` inside a javascript file: ```javascript `foo` `bar` ``` The first foo backtick doesnt work,...
> Can tagged template literals span lines? Yeah, all template literals, not only tagged ones. I think if the implementation is difficult and/or performance is impacted, then this is not...
This works for me (print to stdout instead of returning): ```clojure #!/usr/bin/env bb (do (println (json/generate-string {:foo "bar", :baz 5})) (json/generate-string {:foo "bar", :baz 5})) ``` ```console $ bb test.clj...
Try with: ```lua require('which-key').register({ c = { name = 'Comments', }, }, { prefix = 'g' }) ```
Sure, I'm ok with a fork, but I think this shouldn't be a breaking change: ```diff diff --git a/src/index.js b/src/index.js index f9d52b8..b2dae57 100644 --- a/src/index.js +++ b/src/index.js @@ -39,6 +39,7...
you can set: ```vimscript let g:php_namespace_sort = "'{,'}-1!awk '{print length, $0}' | sort -n -s | cut -d' ' -f2-" ```
If you have problems with Waterfox 55, search in about:config for 'browser.tabs.remote.autostart.2' and set to false, this seems to fix the issues so far.
I'm having the same issue. I think we can have two possible solutions: 1. The easiest: Use [vim-cutlass/cutlass.vim](https://github.com/svermeulen/vim-cutlass) or copy/call this function: ```vim function! cutlass#overrideSelectBindings() let i = 33 "...
Increasing list indentation when list item ending in `:`: ``` - foo: ``` Running `o` or ``: ``` - foo: - | ```