Char
Char
> Do you mean from the toolbar popup? Yes from the toolbar popup. > However, do people use ➕JS or ➕CSS to write a new script for the current tab...
Also AFAIK pathogen adds the plugin path into `&rtp` so it should not have any problem with ftplugin.
Current workaround is using this Autohotkey script ```autohotkey #HotIf WinActive('ahk_class SunAwtFrame') ;https://www.autohotkey.com/boards/viewtopic.php?t=81355 ~Alt::Send('{Blind}{vkE8}') #HotIf ```
Looking at the code it seems that `getSourceAndCachePaths` is still called whether `up_to_date_check` is set to true or false. In my profiling data, `getSourceAndCachePaths` takes about 4.6ms. This is the...
I think you can use a temporary file and then use `os.replace` to write the cache file to achieve an atomic write effect. With multiple processes, the file can be...
My custom `ctagsbin` is this deno script using `ts-morph` that works with typescript and javascript ```javascript import { Project, ConstructorDeclaration, MethodDeclaration, VariableDeclarationKind } from 'https://deno.land/x/ts_morph/mod.ts'; class Main { constructor(filename) {...
I find it a bit weird though, the standard is ctags, isn't it?. If there is a custom command or if I were to create a custom command, I would...
Thank you for adding the poll. Is it possible that if a custom ctagsbin is given and custom kinds is given (in `g:tagbar_type_[filetype]`) then the custom kinds is not overriden?...
I have tested it and it seems to work, thank you.
`pip wheel` uses a virtual env to build and does not use the existing cython. Using `pip install setuptools && python setup.py bdist_wheel` works.