unchangeable lines

2019-12-26 Thread Vladimir Stenbock
Is it possible to mark some lines as unchangeable ? -- -- You received this message from the "vim_use" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php --- You received this message because you are

operator's "count" doesn't work

2018-12-19 Thread Vladimir Stenbock
I want to delete N substrings inside double quotes word1 word2 "substring1" word3 "substring2" word4 word5 "substring3" but :norm 3da" doesn't work -- -- You received this message from the "vim_use" maillist. Do not top-post! Type your reply below the text you are replying to. For more

Re: str2float() issue

2018-11-26 Thread Vladimir Stenbock
> If you want to convert strings of hexadecimal (0xa), octal (0755), > binary (0b) to integers, you can use unary + operator. > > :echo +'0xa' > => 10 > :echo +'0755' > => 493 > :echo +'0b' > => 240 > > P.S. > Vim script can treat an exponential notation, but unary + operator