Updated cabal sytanx file

2022-10-22 Fir de Conversatie coot
Hi Bram, I attach updated cabal syntax file. Best regards, Marcin Szamotulski Sent with Proton Mail secure email. -- -- You received this message from the "vim_dev" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org

Re: wildoptions pum

2022-02-13 Fir de Conversatie coot
right, it makes sense to leave it as is. Best regards, Marcin Sent with ProtonMail Secure Email. --- Original Message --- On Sunday, February 13th, 2022 at 14:24, Bram Moolenaar wrote: > Marcin Szamotulski wrote: > > > Recently the pum option was added to wildoptions. When set, it

wildoptions pum

2022-02-12 Fir de Conversatie coot
Recently the pum option was added to wildoptions. When set, it show a completion window when is pressed, should it also trigger on ? Best regards, Marcin Szamotulski Sent with ProtonMail Secure Email. -- -- You received this message from the "vim_dev" maillist. Do not top-post! Type your re

Re: tagfile's tag with a long field

2021-12-11 Fir de Conversatie coot
‐‐‐ Original Message ‐‐‐ On Friday, December 10th, 2021 at 21:16, Bram Moolenaar wrote: > > Long time no see :), > > > > With the following tags file > > > > !_TAG_FILE_FORMAT 2 // > > !_TAG_FILE_SORTED 1 // > > !_TAG_FILE_ENCODING utf-8 //

tagfile's tag with a long field

2021-12-10 Fir de Conversatie coot
Hello vim dev, Long time no see :), With the following tags file ``` !_TAG_FILE_FORMAT 2 // !_TAG_FILE_SORTED 1 // !_TAG_FILE_ENCODING utf-8 // inboundGSV a 1;" r inboundGovernor a 2;" kind:⊢ type:forall (muxMode :: MuxMode) socket peerAddr

wrapscan option

2021-01-09 Fir de Conversatie coot
Hello vim_dev, I think that the wrapscan option should be local rather than global, but maybe this is only how I tend to use it. I like to have it on, unless in terminal buffers where searching till the end of the buffer is the preferred behaviour. This can be worked out with a few lines of v

Re: Haskell related syntax files.

2020-11-21 Fir de Conversatie coot
Hi Bram, I opened a PR https://github.com/vim/vim/pull/7339 which updates `filetype.vim` and adds `syntax/cabalconfig.vim` and `syntax/cabalproject.vim` files. The updated `syntax/cabal.vim` file is not included in that PR. Best regards, Marcin ‐‐‐ Original Message ‐‐‐ On Saturday,

Haskell related syntax files.

2020-11-21 Fir de Conversatie coot
Hi Bram, I attach updated cabal syntax file. I would also include support for two additional filetypes: * cabal config files, recognized by: ``` au BufRead,BufNewFile $HOME/.cabal/config setf cabalconfig au BufRead,BufNewFile cabal.config setf cabalconfig ``` * cabal project files, recognized by

and doautocmd

2020-10-27 Fir de Conversatie coot
Hello Vim_Dev, I have an autocommand: au BufReadCmd ssh://* s:sshBufReadCmd(expand("")) When I run `doautocmd BufReadCmd ssh://somefile` from another buffer, `expand("")` is expanded to the buffer number of the current buffer rather than the buffer on which I want to execute the autocommand.