python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
In Vim, when doing vi", how do you only select things inside the quotes and not things between the quotes
Take for example
{ label: "Contacts", p|age: "/contacts" },
When the cursor is on page, doing vi" selects , page: and not the subsequent quotee, /contacts.
What can be done ...
Krit
Votes: 0
Answers: 1
How to make vim folding not open when typing brackets
I am using vim and foldmethod=syntax; When I type brackets somewhere in my code, it immediately opens all following folds. I can see why that happens: the open bracket changes the correspondences of t...
aky-her
Votes: 0
Answers: 1
Please give me some advice on the problem of vimgolf
https://www.vimgolf.com/challenges/9v006233d72d000000000219
Start file
#!/bin/bash
a = 5
b = 10
sum = $a + $b
echo $sum
mul = $a * $b
echo $mul
End file
#!/bin/bash
a=5
b=10
sum=$((a + b))
echo $sum...
user18712224
Votes: 0
Answers: 1
Is there a way to copy a word under the cursor and paste it in fzf line search in vim?
I want to put a word under my cursor like CACHED_VALUE, and I want to put it in fzf line search :Lines or :GFiles, is there a way to achieve this?, because sometimes the variable name is big and diffi...
R Nanthak
Votes: 0
Answers: 1