Welcome to Software Development on Codidact!
Will you help us build our independent community of developers helping developers? We're small and trying to grow. We welcome questions about all aspects of software development, from design to code to QA and more. Got questions? Got answers? Got code you'd like someone to review? Please join us.
Post History
In Vim command-line mode, I can run :set invnumber to toggle line numbers on/off. Is there a way to run this command using the $ vim --remote-expr {expr} shell command? I know I can do this using $...
#1: Initial revision
how to run Vim's `:set` command using `vim --remote-expr`
In Vim command-line mode, I can run `:set invnumber` to toggle line numbers on/off. Is there a way to run this command using the `$ vim --remote-expr {expr}` shell command? I know I can do this using `$ vim --remote-send ':set invnumber<cr>'`. But I want to know if I can do this using `vim --remote-expr` so I can build a more complicated command off of it.
