up vote 3 down vote favorite
2
share [g+] share [fb]

When using gdb and Vim, often I want to stop on a particular line. Normally in Vim I copy-paste the line number showing on the rule area to the gdb session. It'd save me a lot of hassle if I could use something like "+<magic-incantation> to copy the line number of the current cursor position into the xclipboard buffer. Is this possible?

link|improve this question

feedback

4 Answers

up vote 8 down vote accepted

put this in your vimrc

map ,n <Esc>:let @*=line(".")<CR>

then using ,n will copy the current line number into the clipboard

link|improve this answer
feedback

So the magic line is:

 :call setreg('*', line('.'))

The reason:

  1. The register * hold the clipboard
  2. line('.') holds the current line number

Of course you can map that function to a shortcut:

nmap ,ln :call setreg('*', line('.'))<CR>
link|improve this answer
feedback

Also, to use GDB from within vim, you may want to check out some of the gdb scripts on vim.sourceforge.net -

link|improve this answer
feedback

Not sure if this is what you're after but have you tried using markers?

Put the cursor on the line you want, then enter m and a letter, say a.

Entering 'a will take you to the line containing the marker.

Entering `a will take you to the actual letter that you marked in the line.

Hmm, just thinking a bit further, this must be available as the line number is available for use in various functions, e.g. for use in the status bar.

link|improve this answer
Nice try, but sadly the a buffer doesn't hold the line afterwards. Marks and yanks must use a different set of registers... – richq Nov 17 '08 at 11:21
Bugger. Not sure about what you wanted this for but I assumed just navigation. Maybe add a bit more text to clarify the questions? – Rob Wells Nov 17 '08 at 12:48
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.