Tagged Questions
1
vote
1answer
412 views
PhpStorm: any solution for 4 annoying problems?
I'm a rather happy PhpStorm user, but there are a few things that really annoy me, but I'm not a settings expert and wish there is a solution for them (editing PHP files) :
Navigation
Often in the ...
0
votes
2answers
50 views
Does anyone know of a text editor that allows you to indent highlighted chunks of code all at once?
I am extremely OCD when it comes to the layout of my code, and it's a pain to press the down arrow key and Tab a hundred times in a row. Does anyone use a text editor that has the function of ...
6
votes
3answers
278 views
How to quickly select (inner) line-wise in Vim
Vim has some very useful text motions such as ib, i), i}, etcetera to quickly select a portion of text. But, I often need an inner block in line-wise mode. For example (with line numbers):
1: $foo ...
0
votes
1answer
229 views
Is there any short cuts for Xcode to tidy up the code?
for example, I have something like this:
aVarible = 123;
bIndex = 234;
cSomethingVerylong = 456;
And I would like to intent the code like this:
aVarible = 123;
bIndex = ...