Slashdot Mirror


User: kyrmit09

kyrmit09's activity in the archive.

Stories
0
Comments
1
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 1

  1. Often ignored: ex mode on (Useful) Stupid Vim Tricks? · · Score: 1

    Hi, the ex-mode isn't as straight forward as the commands for vi but comes in handy at times. A rough and tumble way to view methods in a perl module ":g/sub/p", or public java methods in a java class ":g/^public/p". Also helpful to filter all the stack dumps from the jboss (or other java related ) logfile to get some non generic error messages ":v/\tat/p".