Dnia niedziela, 1 października 2006 14:54, Meino Christian Cramer napisał:
> Hi,
>
>  is it possible to map the sequence of
>
>  <C-C><C-F>b
>
>  to anything (and how?)?
>
>  I tried as a first brute-force experiment
>
>  noremap  <C-C><C-F>b echo "works"

If you want to print it in the buffer it should be::

    noremap  <C-C><C-F>b iecho "works"

If you want to echo it in command line::
        
    noremap  <C-C><C-F>b :echo "works"

Normal mode mappings begin in Normal mode, not Insert or Command-Line.

m.

Reply via email to