Skip to main content

Questions tagged [input-methods]

Questions about techniques to input text other than what is literally labelled on keycaps on a keyboard

2 votes
1 answer
125 views

Based on this answer, I was able to type Control-V x0b to enter the byte 0b and Control-V x0c to enter the byte 0c. Many other sequences work as expected. However, Control-v x0a gives me the byte 0 ...
merlin2011's user avatar
0 votes
1 answer
238 views

I am wondering what it would take to build an Android keyboard that mimicked Vim, with swipe (swype?) functionality (such as the one Google's Gboard uses to allow users to write on Android). This ...
Joselin Jocklingson's user avatar
0 votes
1 answer
92 views

If I edit a file outside of a Vim session, then go back to the Vim session, I get this nice message: W11: Warning: File "~/.vimrc" has changed since editing started See ":help W11" ...
Enlico's user avatar
  • 2,340
0 votes
0 answers
509 views

I use Vim for academic writing and my preferred writing method is using stenography with Plover. Is there any initiative to integrate Stenography/Plover into Vim? Currently, I am switching keyboards ...
Robert Winkler's user avatar
0 votes
1 answer
110 views

I am using J6+ samsung hp. I can handwritte with samsung onscreen keyboard on all social media platforms, but on vim I can't. Why not? Is there a workaround? I need to write certain asian words that I ...
user15344508's user avatar
1 vote
0 answers
58 views

Is it possible to replace already typed text with the same string parsed by a keymap loaded with :set keymap? For example, assuming there is a keymap that translates SYM_GROUND into the unicode ⏚ ...
user avatar
0 votes
1 answer
297 views

Using a terminal emulator (with :term), I would like to insert the value of a variable at the terminal cursor. In a normal text buffer, I could use put =g:my_variable or exec ("normal! i" . g:...
Jasha's user avatar
  • 583
2 votes
1 answer
966 views

Occasionally, I need to edit text in Chinese, and the input method I use makes it extremely tedious to do so with vim. Each time I want to leave insert mode, I have to <C-]> (to return to normal ...
Ryan Lue's user avatar
  • 901
0 votes
1 answer
145 views

I am writing a small plugin to manage my address book (the actual plugin interfaces with the abook program). I use a special buffer (nofile) and I redraw the entire buffer each time something changes....
grochmal's user avatar
  • 1,696
2 votes
0 answers
45 views

Is anyone using this keymap file with success? https://github.com/vim-scripts/greek_polytonic.vim I get only Latin output after following the instructions.
Toothrot's user avatar
  • 3,169
4 votes
1 answer
362 views

I have a folder with some input files (text files with extention .in). In same folder, I have made a Java program. I want to test the input of all the input files in this Java program. In a GUI, I ...
Jamgreen's user avatar
  • 141
4 votes
0 answers
416 views

I have the following .inputrc: set editing-mode vi set keymap vi-command set show-all-if-ambiguous on set completion-ignore-case on In bash when I type following (in insert mode!) as an example, # ...
Joachim's user avatar
  • 141
1 vote
0 answers
316 views

I've been using the pseudo keymap solution from my previous question to great effect for 6 months now. The short version is that it allows me to keep the computer keyboard map in my usual Programmer's ...
Caleb's user avatar
  • 2,275
34 votes
5 answers
12k views

When writing documents occasionally I want to insert Unicode characters into the text. Sometimes I know the character code and sometimes I look it up on the web. Currently I go to insert mode and ...
Loki Astari's user avatar
  • 6,860
46 votes
8 answers
13k views

To insert an en dash, I use ^v u 2014 which is seven keypresses. Is there an easier way? (I was looking at digraphs and didn't find en dash there.)
Tomas Tomecek's user avatar