andyСÓê wrote: > Hi all: > I am going to develop a plugin for vim, but I got some problems > right now. I want to open a buffer at specific window and lock the > window's position and size that no one can change them. What can I do > to make this possible? thanks You can't.
At the most you can attempt to do restoration via autocmds (CursorHold, CursorMoved, CursorMovedI, ...), and map and cmap various things which split/move/resize so that they don't do the expected operation but do nothing (or give an error/warning message) when they will affect your window. Regards, Chip Campbell --~--~---------~--~----~------------~-------~--~----~ You received this message from the "vim_use" maillist. For more information, visit http://www.vim.org/maillist.php -~----------~----~----~----~------~----~------~--~---
