question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Support ^e and ^y

See original GitHub issue

Vim has some nice scrolling features where the cursor stays in the same spot but the screen moves up and down: ^E and ^Y. From scroll.txt:

                                                        CTRL-E
CTRL-E                  Scroll window [count] lines downwards in the buffer.
                        Mnemonic: Extra lines.

                            CTRL-Y
CTRL-Y          Scroll window [count] lines upwards in the buffer.

Issue Analytics

  • State:closed
  • Created 7 years ago
  • Comments:6 (4 by maintainers)

github_iconTop GitHub Comments

1reaction
rebornixcommented, Jul 28, 2016

@jordanlewis oh your workaround is neat! didn’t notice Code already supports line scrolling, then it will be easy to add these command natively in VSCodeVim. I’ll add this real quick.

0reactions
afjosephcommented, Oct 10, 2016

^d was also not working (It was assigned to ‘delete right’ ). I’ve added the following to @jordanlewis’s answer:

    {
        "key": "ctrl+e",
        "command": "scrollLineDown",
        "when": "editorTextFocus"
    },
    {
        "key": "ctrl+y",
        "command": "scrollLineUp",
        "when": "editorTextFocus"
    },
    {
        "key": "ctrl+d",
        "command": "extension.vim_ctrl+d"
    },
    {
        "key": "ctrl+u",
        "command": "extension.vim_ctrl+u"
    }
Read more comments on GitHub >

github_iconTop Results From Across the Web

Connect with us | EY - US
Contact the EY Ethics Hotline. Report conduct that may be unethical, illegal or inconsistent with the EY Global Code of Conduct.
Read more >
EY US - Home | Building a better working world
EY provides consulting, assurance, tax and transaction services that help solve our client's toughest challenges and build a better working world for all....
Read more >
Services – What we do | EY - Global
Working across assurance, consulting, law, strategy, tax and transactions, EY teams ask better questions to find new answers for complex issues. Learn more....
Read more >
Ernst & Young - Wikipedia
Ernst & Young Global Limited, trade name EY, is a multinational professional services partnership headquartered in London, England. EY is one of the...
Read more >
EY Employee Reviews for Technical Support Specialist - Indeed
Reviews from EY employees about working as a Technical Support Specialist at EY. Learn about EY culture, salaries, benefits, work-life balance, management, ...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found