Code Monkey home page Code Monkey logo

Comments (6)

kana avatar kana commented on May 22, 2024

For example...

Expected behavior:

input    | text
---------+-------------------------------------------------------------------------------------
{start}  | call smartinput#map_to_trigger(|'<Plug>(physical-key-;)', '<Enter>', '<Enter>')
'        | call smartinput#map_to_trigger('|''<Plug>(physical-key-;)', '<Enter>', '<Enter>')
i        | call smartinput#map_to_trigger('i|''<Plug>(physical-key-;)', '<Enter>', '<Enter>')
'        | call smartinput#map_to_trigger('i'|'<Plug>(physical-key-;)', '<Enter>', '<Enter>')
,<Space> | call smartinput#map_to_trigger('i', |'<Plug>(physical-key-;)', '<Enter>', '<Enter>')

Actual behavior:

input    | text
---------+-------------------------------------------------------------------------------------
{start}  | call smartinput#map_to_trigger('<Plug>(physical-key-;)', '<Enter>', '<Enter>')
'        | call smartinput#map_to_trigger('|<Plug>(physical-key-;)', '<Enter>', '<Enter>')
i        | call smartinput#map_to_trigger('i|<Plug>(physical-key-;)', '<Enter>', '<Enter>')
'        | call smartinput#map_to_trigger('i'|<Plug>(physical-key-;)', '<Enter>', '<Enter>')
,<Space> | call smartinput#map_to_trigger('i', <Plug>(physical-key-;)', '<Enter>', '<Enter>')

from vim-smartinput.

b4winckler avatar b4winckler commented on May 22, 2024

I have come across this issue a few times now so I thought I'd give you my thoughts on the subject.

My preference is that ( is only completed to () when the character to the right of the cursor is not a space, tab or newline. I find that when the character to the right is not whitespace then I most likely intend to add a single (, do some complex movement, and then insert the ).

I think it is easier to enter insert mode so that the character to the right is whitespace to enable completion than it is to hit Ctrl+v then ( to disable completion.

from vim-smartinput.

kana avatar kana commented on May 22, 2024

@b4winckler Thank you for the feedback. It's hard to define comfortable rules in most cases. I'll consider the problem later.

from vim-smartinput.

grota avatar grota commented on May 22, 2024

not sure how, but I think vim's searchpair function might turn useful.

from vim-smartinput.

char101 avatar char101 commented on May 22, 2024

I currently use this custom rules because most of the time when I'm typing parantheses before a word what I want is to wrap that word inside the parantheses

call smartinput#define_rule({'at': '\%#\w', 'char': '(', 'input': '('})
call smartinput#define_rule({'at': '\%#\w', 'char': '[', 'input': '['})
call smartinput#define_rule({'at': '\%#\w', 'char': '{}', 'input': '{'})
call smartinput#define_rule({'at': '\%#\w', 'char': '''', 'input': ''''})
call smartinput#define_rule({'at': '\%#\w', 'char': '"', 'input': '"'})

from vim-smartinput.

kana avatar kana commented on May 22, 2024

@grota @char101 Thank you for the ideas. I'll consider them later.

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.