Git Product home page Git Product logo

Comments (2)

kana avatar kana commented on May 17, 2024

Thank you for the feedback. How about the following configuration?

call smartinput#map_to_trigger('i', '#', '#', '#')
call smartinput#map_to_trigger('i', '<Bar>', '<Bar>', '<Bar>')

call smartinput#define_rule({'at': '\%#', 'char': '#', 'input': '#{}<Left>', 'filetype': ['ruby'], 'syntax': ['Constant', 'Special']})
call smartinput#define_rule({'at': '\%#', 'char': '<Bar>', 'input': '<Bar><Bar><Left>', 'filetype': ['ruby']})

| has a special meaning in key mappings. So that it should be written in another form <Bar>.

input items in rules are internally passed to :map commands. So that special keys must be written like '<Left>' instead of "\<Left>".

If you edit a Ruby script and the current buffer contains a text 'foo',

  • The opening ' is highlighted as Constant (over Special).
  • Quoted text is highlighted as Constant.
  • The closing ' is highlighted as Special.

So that the syntax item of the former rule must contain also Special.

You can use the following command to check how the character under the cursor is highlighted:

echo map(synstack(line('.'), col('.')), 'synIDattr(synIDtrans(v:val), "name")')

Additionally, | is often used as foo ||= bar, it's better to use the latter rule if the cursor is just after { or do, isn't it?

call smartinput#define_rule({'at': '\({\|\<do\>\)\s*\%#', 'char': '<Bar>', 'input': '<Bar><Bar><Left>', 'filetype': ['ruby']})

Since I wrote vim-smartinput for my personal use, I've never thought that it is used by others. And it's a bit tricky to write rules involving special keys. I'll add more description to the document.

from vim-smartinput.

djtal avatar djtal commented on May 17, 2024

Thank you for the quick reply,

I'll try this a soon has I have a little of spare time and tell you if it work.

I see your plugin in thechanglog blog and decide that I should try it.
For the moment it work quit well and do the work.

from vim-smartinput.

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.