Re: "vim blog" plugin anyone?

2013-11-22 Thread Keith Kaple
On Fri, Nov 22, 2013 at 03:47:01PM -0500, Karl Harris wrote: > Keith Kaple wrote: > > I'm a developer and pretty much do everythig in vim, I was wondering if a > > plugin existed which would do the following. > > > > 1 record my activity daily and append

"vim blog" plugin anyone?

2013-11-22 Thread Keith Kaple
I'm a developer and pretty much do everythig in vim, I was wondering if a plugin existed which would do the following. 1 record my activity daily and append to a vim_blog.datestamp 2 "activity" would be a simple adding somthing like: added #lines deleted #lines changed #lines in /wha

Re: OT: Vim Humans are...

2011-02-17 Thread Keith Kaple
For me it was the modal thing as well, combined with movement simplicity while in command mode via hjkl. For any customizable program I use other than vim, I configure these keys to do movement within the app when key or some other meta type key is also held down. Even movement between deskto

Re: vim with gnu screen with scrollwheel

2009-07-15 Thread Keith Kaple
"screen" set ttymouse=xterm2 endif On Wed, Jul 15, 2009 at 09:01:00PM -0400, Matt Wozniski wrote: > > On Wed, Jul 15, 2009 at 1:58 PM, Keith Kaple wrote: > > > > I've gotten my scrollwheel to work in terminal mode with > > > > set mouse=a > >

vim with gnu screen with scrollwheel

2009-07-15 Thread Keith Kaple
I've gotten my scrollwheel to work in terminal mode with set mouse=a I feel like the handcuffs are off :-) But running within screen, it doesn't work properly. Anyone had to overcome this? thanks, Keith --~--~-~--~~~---~--~~ You received this message fr

mapping to cycle colorschemes?

2009-07-01 Thread Keith Kaple
Anyone have a script that can be mapped to perhaps a function key that will cycle all available colorschemes? thanks, Keith --~--~-~--~~~---~--~~ You received this message from the "vim_use" maillist. For more information, visit http://www.vim.org/maillist.php

Re: newbie: hand position

2009-06-24 Thread Keith Kaple
Welcome! I would highly recommend not remapping. Get used to not moving your right hand, but just poking h with you index finger without moving the other fingers from kl;. In a short while, you'll even forget which key moves where because you will be so conditioned to the strokes without eve

starting at a byte offset

2009-06-12 Thread Keith Kaple
I'm sure this has been asked before, but I don't see a command line option for opening a file to a specific byte offset from the beginning. Anyone have a solution for allowing this feature? thanks, Keith --~--~-~--~~~---~--~~ You received this message from t

Re: syntax file regexp involving field delimiters

2009-06-05 Thread Keith Kaple
Thanks very much Christian and Andy !! On Thu, Jun 04, 2009 at 07:00:40PM -0400, Keith Kaple wrote: > > Ok, I give up ;-) > > I'm trying to write a syntax file for a "pipe" delimeted file, lines look > something like the example below. I started off ok a

syntax file regexp involving field delimiters

2009-06-04 Thread Keith Kaple
Ok, I give up ;-) I'm trying to write a syntax file for a "pipe" delimeted file, lines look something like the example below. I started off ok and got the first number and timestamp via syn match, but then thought there is probably an easier way to do regexp tagging on the fields based on the

Re: Opening compressed files without .gz extension

2009-06-03 Thread Keith Kaple
:r : autocmd FileAppendPre*.gzo !gunzip : autocmd FileAppendPre*.gzo !mv :r : autocmd FileAppendPost *.gzo !mv :r : autocmd FileAppendPost *.gzo !gzip :r :augroup END On Wed, Jun 03, 2009 at 04:08:50PM -0400, Matt Wozniski wrote

Opening compressed files without .gz extension

2009-06-03 Thread Keith Kaple
What is the easiest way to add a file extension so that vim sees it as a compressed file and uses the builtin ability to open compressed files? I'm faced with a process that produces .gzo files (gzip format) that can be opened with 'zcat foo.gzo | vim -', but seems it would be cleaner to be abl