Version: 1.1
Tracker id: 2960746
mercurial changeset: d9e9504456d3

Problem:
    Some of the key mappings set up by the ``Cmapkeys`` command do not
    work. For example hitting CTRL-P, just sends a "print" command to
    gdb.

    The cause of the problem is that pyclewn relies on the Vim balloon
    evaluation feature (:help balloon-eval), to get the text under the
    mouse position. This feature is not available with vim console.


Solution:
    The solution is to not use the ``Cmapkeys`` command and to build
    one's own key mappings.

    For example:

    * to print the value of the variable under the cursor, after hitting
      CTRL-P:

        :map <C-P> :exe "Cprint " . expand("<cword>") <CR>

    * to set a breakpoint on the line where the cursor is located, after
      hitting CTRL-B:

        :map <C-B> :exe "Cbreak " . expand("%:p") . ":" . line(".") <CR>


Files:
    The documentation has been updated.

------------------------------------------------------------------------------
Download Intel&#174; Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
_______________________________________________
Pyclewn-general mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/pyclewn-general

Reply via email to