-
Notifications
You must be signed in to change notification settings - Fork 47
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Ability to disable the insert-mode \ unicode entry #20
Comments
There is no variable that controls this currently, but I can add it. It should only take a few minutes. You can also just comment out the |
Okay, I just pushed 5bbc866 which add the variable |
I attempted to comment out that |
Not really in this project unless your bundling mechanism just loads every file in the root of the bundle. The string "agda-utf8.vim" only occurs on that line in the whole project. You can grep your |
This is what confuses me. I have also tried deleting that file wholesale and the |
So, are you sure the \ is leading into unicode? E.g. does \N produce a blackboard N? If not, it's just that the commands in the Agda mode use LocalLeader by default and that is \ by default (in fact, the Unicode mappings also use LocalLeader), so it may just be waiting for a command, e.g. \t to get types. You can write |
The "Typing Unicode Characters" section on this page, refers to the files and setup for the Unicode mappings. You can check for e.g. |
Indeed, they do produce unicode characters, however, I just noticed something that may give the key to the problem. It seems if I start a new source file, this behavior does not happen in the new file. Does vim cache this kind of thing somewhere? |
Ah hah! I figured it out. This was indeed not an issue with Thank you for the help! |
I'd be surprised if it did that across vim sessions (i.e. closing and reopening vim entirely). Of course, it won't reload the mappings, which are buffer local, if the buffer remains open. |
Actually, they did persist across closing and reopening vim entirely. I had to clear the relevant files from the |
If this feature is already present, I have not found a way to disable it, but I am hoping to do some literate programming in agda (which uses latex). The result is that I will be typing regular old
\
a lot and the unicode entry is incredibly bothersome for that.I already have a very full XCompose set up and I would much prefer to use that. Is this feature already available? If so, how does one disable it? If not, any chance that you will see fit to add it?
The text was updated successfully, but these errors were encountered: