Coder Social home page Coder Social logo

Comments (3)

fdncred avatar fdncred commented on June 9, 2024

with vi mode or emacs mode, this jumping has always been there. i'd love to see a fix for it.

from reedline.

markmurphydev avatar markmurphydev commented on June 9, 2024

So the issue is in engine.rs > Reedline.run_edit_commands

if self.input_mode == InputMode::HistoryTraversal {
    if matches!(
        self.history_cursor.get_navigation(),
        HistoryNavigationQuery::Normal(_)
    ) {
        if let Some(string) = self.history_cursor.string_at_cursor() {
            self.editor
                .set_buffer(string, UndoBehavior::HistoryNavigation);
        }
    }
    self.input_mode = InputMode::Regular;
}

When it's called after moving around in the history, it replaces the current buffer, and when it does, the insertion point gets set to the end of the buffer, before the edit command is executed.

I'm not sure what reason there is for replacing the buffer with the current history cursor. Can it be removed?

from reedline.

fdncred avatar fdncred commented on June 9, 2024

Can it be removed?

I'm not sure. We'd have to see if the current tests pass (hopefully there's a test for such things) and it would be nice to have a new test to cover how it "should" work in the future. Another good thing about it that it can be tested in nushell too and see how it works in everyday life.

from reedline.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.