GithubHelp home page GithubHelp logo

Comments (4)

jiripospisil avatar jiripospisil commented on July 24, 2024

I agree that :32 should be supported. In the meanwhile, you can use 32G or 32gg to do the same. I actually prefer it.

from vim.

Morgawr avatar Morgawr commented on July 24, 2024

+1 for this

from vim.

cldwalker avatar cldwalker commented on July 24, 2024

This functionality is available in CodeMirror, LightTable's editor. Try for yourself in this demo. However, LT's current ex-mode only autocompletes to vim LT commands and only processes LT commands.

The latter could be remedied with an ltexec that delegates unknown commands back to CodeMirror:

  (ex-command {:name "ltexec"
               :func (fn [cm info]
                       (let [command (-> (.-args info) first keyword)
                              ex-args (next (.-args info))]
                         (if (cmd/by-id command)
                           (apply cmd/exec! command  ex-args)
                           (when-let [ed (pool/last-active)]
                             (js/CodeMirror.Vim.handleEx (editor/->cm-ed ed)
                                                                            (clojure.string/join " " ex-args))))})

However, the UI would also have to allow this which it currently doesn't.

Alternatively, we could opt for an optional way to disable LT's ex-command UI but I've tried that and LT still causes CodeMirror's showPrompt to get thrown as an alert box.

I'd love to see the latter solution, appearing the same as the above demo.

@ibdknox Any thoughts?

from vim.

cldwalker avatar cldwalker commented on July 24, 2024

After thinking about this more, I'm happy with 32G. We don't have enough bandwidth to tackle this but if anyone is passionate about this, happy to discuss a pull request.

from vim.

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.