Hi Jussi,
I too am having problems with bookmarks. I have the 3.96a eval, and I copied over my old zConfig folder.
I cannot get bookmarks to work at all. I have Alt-1 mapped to DropBookmark1, but it wont drop. I have Ctrl-1 mappged to GotoBookmark1, and it reports "No bookmark set at this location ...
Search found 11 matches
- Fri Jan 26, 2007 4:20 pm
- Forum: Reporting a Bug
- Topic: Bookmarks in Zeus 3.96 do not work
- Replies: 8
- Views: 23189
- Mon Aug 28, 2006 3:17 am
- Forum: General
- Topic: escape key and keyboard_input
- Replies: 3
- Views: 11449
- Sat Aug 26, 2006 8:03 pm
- Forum: General
- Topic: escape key and keyboard_input
- Replies: 3
- Views: 11449
escape key and keyboard_input
I have been playing around with the wordcomp.lua script... and I like it very much, but escape does not work correctly. I think keyboard_input() is looking for escape key and aborting the macro so the script never see's it and has a chance to clean up.
Is there a way to get the escape key in a ...
Is there a way to get the escape key in a ...
- Fri Aug 25, 2006 5:25 pm
- Forum: General
- Topic: BookMarks ??
- Replies: 10
- Views: 29742
- Fri Aug 25, 2006 1:15 am
- Forum: Comments and Suggestions
- Topic: find request
- Replies: 2
- Views: 14192
- Thu Aug 24, 2006 7:13 pm
- Forum: Comments and Suggestions
- Topic: find request
- Replies: 2
- Views: 14192
find request
I have a quick request:
would it be possible to add an option to make the find dialog box close after the first find?
What I'd like is to hit Ctrl-F to open find, type in my text and hit enter, it does the search, and have the dialog box close. If I want to find more I'll use the F3 or Ctrl-L ...
would it be possible to add an option to make the find dialog box close after the first find?
What I'd like is to hit Ctrl-F to open find, type in my text and hit enter, it does the search, and have the dialog box close. If I want to find more I'll use the F3 or Ctrl-L ...
- Thu Aug 24, 2006 5:04 pm
- Forum: Tutorials, Tips and Tricks
- Topic: Some of my keyboard macros
- Replies: 1
- Views: 12032
Some of my keyboard macros
I like home key to go to first word or first column. This macro toggles between the two:
-- home.lua
function key_macro()
local tab = 9
local space = 32
local oldpos = get_cursor_pos()
MoveLineHome()
local chdata = get_char_at()
if (chdata == space) or (chdata == tab) then
MoveLineFirst ...
-- home.lua
function key_macro()
local tab = 9
local space = 32
local oldpos = get_cursor_pos()
MoveLineHome()
local chdata = get_char_at()
if (chdata == space) or (chdata == tab) then
MoveLineFirst ...
- Wed Aug 23, 2006 1:05 pm
- Forum: General
- Topic: MoveLineLeftEdge
- Replies: 8
- Views: 19699
- Wed Aug 23, 2006 1:37 am
- Forum: General
- Topic: MoveLineLeftEdge
- Replies: 8
- Views: 19699
- Wed Aug 23, 2006 12:13 am
- Forum: General
- Topic: MoveLineLeftEdge
- Replies: 8
- Views: 19699
- Tue Aug 22, 2006 5:48 pm
- Forum: General
- Topic: MoveLineLeftEdge
- Replies: 8
- Views: 19699
MoveLineLeftEdge
Hello,
I mapped my home key to MoveLineLeftEdge, expecting that it would bring m to the first non-white space on a line, instead of the first column.
If I have a line that is tabbed/spaced/indented, and I hit home, I dont want to go to column 1, but the start of the first word.
Is ...
I mapped my home key to MoveLineLeftEdge, expecting that it would bring m to the first non-white space on a line, instead of the first column.
If I have a line that is tabbed/spaced/indented, and I hit home, I dont want to go to column 1, but the start of the first word.
Is ...