Joined June 2012
·
Posted to
vim to-do list
over 1 year
ago
Ags version with optional autocomplete paths so you don't have to search whole project
command -nargs=? -complete=file Todo execute "Ags" 'TODO\|FIXME\|XXX' <f-args>
Posted to
Vim exit from insert mode
over 1 year
ago
<CTRL>C
should work too
Posted to
Git number : Boost up your git command productivity!
over 1 year
ago
have you tried git add -i ?
Posted to
Write to read-only file from within VIM
over 1 year
ago
I usually map it, eg
cmap w!! w !sudo tee % >/dev/null<CR>
Posted to
+ or .concat, what is faster for appending string in Ruby?
over 1 year
ago
'+' created new object every time and '.concat' works on the same object.
Thats why 'concat' is faster and that's why you should not use it every time.
Tip: '<<' is an alias for '.concat'.
Posted to
Compress the cd, ls -la series of commands
over 1 year
ago
For me it's very annoying.
Whats happens when you go to directory with 10k files? ;)
Posted to
Tabbing in gvim
over 1 year
ago
C-PgUp and C-PgDn works for me out of box without extra mapping.
Posted to
Prevent bad vim habits
over 1 year
ago
You can use a plugin as well https://github.com/mrmargolis/dogmatic.vim it will tell you how many times you try to use arrow keys
Achievements
62 Karma
0 Total ProTip Views
![](https://coderwall.com/assets/badges/raven-35923a69492045dffe4dfe0d7ebf31da4e76efabbbdaa090acd59d17debb3087.png)
Raven
Have at least one original repo where some form of shell script is the dominant language
![](https://coderwall.com/assets/badges/earlyadopter-20380a1f9aae3eb4fec2497bd3d943ac4ca0e3aa08248755350b947f2098bb65.png)
Opabinia
Started social coding on GitHub within 6 months of its first signs of life
![](https://coderwall.com/assets/badges/walrus-1f517cbbd8f030099b8386c53d4ee40fece3fa146b6362accb3abddb436482cb.png)
Walrus
The walrus is no stranger to variety. Use at least 4 different languages throughout all your repos
![](https://coderwall.com/assets/badges/forked1-63f23ad054823f6065b4526f8552dbc2c4fbaa75d22db7150d700201218ac426.png)
Forked
Have a project valued enough to be forked by someone else
![](https://coderwall.com/assets/badges/charity-bab6d575c53894cc9e395db7cdb1f0f91f176fa0cc8122c5f824e672f3d556a4.png)
Charity
Fork and commit to someone's open source project in need
![](https://coderwall.com/assets/badges/mongoose3-3c4898df9b91ea4bec8bce0c83908998df630cbbf749d2dcfadba121af2bf1fa.png)
Mongoose 3
Have at least three original repos where Ruby is the dominant language
![](https://coderwall.com/assets/badges/mongoose-299fb33af2a4e416505b484d73e79ee3ff1840f3c7385d6bbbc158f76be054cb.png)
Mongoose
Have at least one original repo where Ruby is the dominant language
it should not be
coderWallApi.methodName
insteadcoderWallViewService.methodName
?