Curation by kodin 1 month, 3 weeks ago for query vimscript functions
Original results
-
https://en.wikipedia.org/wiki/Vim_(text_editor) — found via Wikipedia
Vim (text editor)
These plugins are usually written in Vim's internal scripting language, vimscript (also known as VimL), but can be written in other languages as well. There
-
https://en.wikipedia.org/wiki/List_of_applications_using_Lua — found via Wikipedia
List of applications using Lua
add-ons. Neovim text editor offers Lua functionality as a replacement for Vimscript as a scripting language, both for plugin development and for user configuration
-
https://en.wikipedia.org/wiki/Comparison_of_programming_languages_(syntax) — found via Wikipedia
Comparison of programming languages (syntax)
and a comma or a period Backslash as first character of continued line Vimscript Some form of inline comment serves as line continuation Turbo Assembler:
-
https://en.wikipedia.org/wiki/Macro_(computer_science) — found via Wikipedia
Macro (computer science)
macros for Microsoft Office. Vim also has a scripting language called Vimscript to create macros. Visual Basic for Applications (VBA) is a programming
-
https://en.wikipedia.org/wiki/Vimperator — found via Wikipedia
Vimperator
scripts. The scripts are written using JavaScript and a limited version of Vimscript. Conkeror – a web browser with Emacs-like key bindings Pentadactyl – a
-
https://devhints.io/vimscript-functions — found via Google
Vimscript functions cheatsheet
The one-page guide to Vimscript functions: usage, examples, links, snippets, and more.
-
https://www.reddit.com/r/vim/comments/w8c9jh/vim_where_to_put_functions_vimscript/ — found via Google
Vim - where to put functions (vimscript)?
My favorite spot to place functions is in the ~/.vim/plugin directory but my INTENTION is to move my own stuff into the ~/.vim/pack structure.
-
https://learnvim.irian.to/vimscript/vimscript_functions — found via Google
Vimscript Functions | Learn Vim
You can define a ranged Vimscript function by adding a range keyword at the end of the function definition. A ranged function has two special variables ...
-
https://learnvimscriptthehardway.stevelosh.com/chapters/23.html — found via Google
Functions - Learn Vimscript the Hard Way
Like most programming languages, Vimscript has functions. Let's take a look at how to create them, and then talk about some of their quirks.
-
https://learnvimscriptthehardway.stevelosh.com/chapters/24.html — found via Google
Function Arguments - Learn Vimscript the Hard Way
Vimscript functions can optionally take variable-length argument lists like Javascript and Python. Run the following commands:
-
https://stackoverflow.com/questions/18178768/vimscript-call-vs-execute — found via Google
vim - vimscript call vs. execute
:call : Call a function. :exec : Executes a string as an Ex command. It has the similar meaning of eval (in javascript , python , etc) ...
-
https://vi.stackexchange.com/questions/44953/recommended-way-of-scripting-ex-commands-or-vimscript-functions — found via Google
Recommended way of scripting: Ex commands or vimscript ...
02-Jun-2024 — While scripting I could achieve the same result both through Ex commands and vimscript functions, for example: var filename = "foo.txt" exe "new ...
-
https://vi.stackexchange.com/questions/37009/calling-function-without-using-call — found via Google
Calling function without using call
14-Mar-2022 — Vimscript is a collection of Ex commands. As a Vim function is not an Ex command, you need to use the ":call" Ex command to invoke the function.
-
https://vimdoc.sourceforge.net/htmldoc/usr_41.html — found via Google
Vim documentation: usr_41
The Vim script language is used for the startup vimrc file, syntax files, and many other things. This chapter explains the items that can be used in a Vim ...
New results
-
https://devhints.io/vimscript-functions — found via Google
Vimscript functions cheatsheet
The one-page guide to Vimscript functions: usage, examples, links, snippets, and more.
-
https://en.wikipedia.org/wiki/Vim_(text_editor) — found via Wikipedia
Vim (text editor)
These plugins are usually written in Vim's internal scripting language, vimscript (also known as VimL), but can be written in other languages as well. There
-
https://en.wikipedia.org/wiki/List_of_applications_using_Lua — found via Wikipedia
List of applications using Lua
add-ons. Neovim text editor offers Lua functionality as a replacement for Vimscript as a scripting language, both for plugin development and for user configuration
-
https://en.wikipedia.org/wiki/Comparison_of_programming_languages_(syntax) — found via Wikipedia
Comparison of programming languages (syntax)
and a comma or a period Backslash as first character of continued line Vimscript Some form of inline comment serves as line continuation Turbo Assembler:
-
https://en.wikipedia.org/wiki/Macro_(computer_science) — found via Wikipedia
Macro (computer science)
macros for Microsoft Office. Vim also has a scripting language called Vimscript to create macros. Visual Basic for Applications (VBA) is a programming
-
https://en.wikipedia.org/wiki/Vimperator — found via Wikipedia
Vimperator
scripts. The scripts are written using JavaScript and a limited version of Vimscript. Conkeror – a web browser with Emacs-like key bindings Pentadactyl – a
-
https://www.reddit.com/r/vim/comments/w8c9jh/vim_where_to_put_functions_vimscript/ — found via Google
Vim - where to put functions (vimscript)?
My favorite spot to place functions is in the ~/.vim/plugin directory but my INTENTION is to move my own stuff into the ~/.vim/pack structure.
-
https://learnvim.irian.to/vimscript/vimscript_functions — found via Google
Vimscript Functions | Learn Vim
You can define a ranged Vimscript function by adding a range keyword at the end of the function definition. A ranged function has two special variables ...
-
https://learnvimscriptthehardway.stevelosh.com/chapters/23.html — found via Google
Functions - Learn Vimscript the Hard Way
Like most programming languages, Vimscript has functions. Let's take a look at how to create them, and then talk about some of their quirks.
-
https://learnvimscriptthehardway.stevelosh.com/chapters/24.html — found via Google
Function Arguments - Learn Vimscript the Hard Way
Vimscript functions can optionally take variable-length argument lists like Javascript and Python. Run the following commands:
-
https://stackoverflow.com/questions/18178768/vimscript-call-vs-execute — found via Google
vim - vimscript call vs. execute
:call : Call a function. :exec : Executes a string as an Ex command. It has the similar meaning of eval (in javascript , python , etc) ...
-
https://vi.stackexchange.com/questions/44953/recommended-way-of-scripting-ex-commands-or-vimscript-functions — found via Google
Recommended way of scripting: Ex commands or vimscript ...
02-Jun-2024 — While scripting I could achieve the same result both through Ex commands and vimscript functions, for example: var filename = "foo.txt" exe "new ...
-
https://vi.stackexchange.com/questions/37009/calling-function-without-using-call — found via Google
Calling function without using call
14-Mar-2022 — Vimscript is a collection of Ex commands. As a Vim function is not an Ex command, you need to use the ":call" Ex command to invoke the function.
-
https://vimdoc.sourceforge.net/htmldoc/usr_41.html — found via Google
Vim documentation: usr_41
The Vim script language is used for the startup vimrc file, syntax files, and many other things. This chapter explains the items that can be used in a Vim ...