summaryrefslogtreecommitdiffstatshomepage
path: root/runtime/ftplugin/csh.vim
AgeCommit message (Collapse)AuthorFiles
2026-01-24vim-patch:09a4805: runtime(csh): Update ftplugin, improve matchit behaviourzeertzjq1
- Allow for an unparenthesised expression argument to the 'if', 'if-then', and 'while' commands. This is undocumented, and probably unintended, behaviour but is frequently seen in the wild. - Allow for a continued-line expression argument to the 'if-then' command. related: vim/vim#19172 (csh: Support negated if in matchit) closes: vim/vim#19190 https://github.com/vim/vim/commit/09a48056c775074e0c29aaaf252ccea918f42bbc Co-authored-by: Doug Kearns <dougkearns@gmail.com>
2026-01-16vim-patch:f25c343: runtime(csh): Support negated if in matchitzeertzjq1
Currently, the matchit configuration chokes on valid syntax like: ```csh if !(true) then true endif ``` Make sure the negation syntax is supported. closes: vim/vim#19172 https://github.com/vim/vim/commit/f25c343b2639d393544106c21b3b0b58caa3adca Co-authored-by: Simão Afonso <simao.afonso@powertools-tech.com>
2024-06-04vim-patch:9.1.0464: no whitespace padding in commentstring option in ftpluginsChristian Clason1
Problem: no whitespace padding in commentstring option in ftplugins Solution: Change default to include whitespace padding, update existing filetype plugins with the new default value (Riley Bruins) closes: vim/vim#14843 https://github.com/vim/vim/commit/0a0830624a260660c7fa692ecb7e6e5de09114ba Co-authored-by: Riley Bruins <ribru17@hotmail.com>
2024-01-15vim-patch:93197fde0f1dChristian Clason1
runtime(ftplugin): Use "*" browsefilter pattern to match "All Files" Problem: The "*.*" browsefilter pattern only matches all files on Windows (Daryl Lee) Solution: Use "*" to filter on all platforms but keep "*.*" as the label text on Windows. (Fixes vim/vim#12685, Doug Kearns) The *.* browsefilter pattern used to match "All Files" on Windows is a legacy of the DOS 8.3 filename wildcard matching algorithm. For reasons of backward compatibility this still works on Windows to match all files, even those without an extension. However, this pattern only matches filenames containing a dot on other platforms. This often makes files without an extension difficult to access from the file dialog, e.g., "Makefile" On Windows it is still standard practice to use "*.*" for the filter label so ftplugins should use "All Files (*.*)" on Windows and "All Files (*)" on other platforms. This matches Vim's default browsefilter values. This commit also normalises the browsefilter conditional test to check for the Win32 and GTK GUI features and an unset b:browsefilter. closes: vim/vim#12759 https://github.com/vim/vim/commit/93197fde0f1db09b1e495cf3eb14a8f42c318b80 Co-authored-by: Doug Kearns <dougkearns@gmail.com>
2023-10-14vim-patch:7687238e1b0dChristian Clason1
runtime(tcsh): Update ftplugin (vim/vim#13327) Fix b:browsefilter deletion error when calling b:undo_ftplugin. Fixes vim/vim#13167 https://github.com/vim/vim/commit/7687238e1b0d2f26ba57e1bdf76f782eaa43af3a Co-authored-by: dkearns <dougkearns@gmail.com>
2022-03-09vim-patch:partial 1588bc8ebee2 (#17656)Christian Clason1
Update runtime files https://github.com/vim/vim/commit/1588bc8ebee22f2855f27273fc2234fff370f86c omit: doc updates
2021-10-16vim-patch:2286304cdbbaChristian Clason1
Update runtime files https://github.com/vim/vim/commit/2286304cdbba53ceb52b3ba2ba4a521b0a2f8d0f
2014-07-29re-integrate runtime/ vim-patch:0 #938Justin M. Keyes1
Vim runtime files based on 7.4.384 / hg changeset 7090d7f160f7 Excluding: Amiga icons (*.info, icons/) doc/hangulin.txt tutor/ spell/ lang/ (only used for menu translations) macros/maze/, macros/hanoi/, macros/life/, macros/urm/ These were used to test vi compatibility. termcap "Demonstration of a termcap file (for the Amiga and Archimedes)" Helped-by: Rich Wareham <rjw57@cam.ac.uk> Helped-by: John <john.schmidt.h@gmail.com> Helped-by: Yann <yann@yann-salaun.com> Helped-by: Christophe Badoit <c.badoit@lesiteimmo.com> Helped-by: drasill <github@tof2k.com> Helped-by: Tae Sandoval Murgan <taecilla@gmail.com> Helped-by: Lowe Thiderman <lowe.thiderman@gmail.com>