Search found 11 matches

by codeguy
Fri Jan 26, 2007 4:20 pm
Forum: Reporting a Bug
Topic: Bookmarks in Zeus 3.96 do not work
Replies: 8
Views: 23189

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 ...
by codeguy
Mon Aug 28, 2006 3:17 am
Forum: General
Topic: escape key and keyboard_input
Replies: 3
Views: 11449

Ctrl-Break might be another good option.

Thanks for all your effort!

-Andy
by codeguy
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 ...
by codeguy
Fri Aug 25, 2006 5:25 pm
Forum: General
Topic: BookMarks ??
Replies: 10
Views: 29742

I'd like to add my vote for visible bookmarks too.

Thank you,

-Andy
by codeguy
Fri Aug 25, 2006 1:15 am
Forum: Comments and Suggestions
Topic: find request
Replies: 2
Views: 14192

Cool... And Bummer...

Cool for SearchDialogEx, that's what I wanted.

Bummer cuz I found SearchWordCurrentNext and SearchWordCurrentPrevious. I'd written macros for thoes and you already had the functionality in there...

oh well, it did help me learn :-)

Thanks!

-Andy
by codeguy
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 ...
by codeguy
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 ...
by codeguy
Wed Aug 23, 2006 1:05 pm
Forum: General
Topic: MoveLineLeftEdge
Replies: 8
Views: 19699

Whoa! Hold on there! I'v had enough!

You cant offer really good support like that and not expect me to register. I made it to day three of my evaluation and I'm ready to buy!

Thanks for the help, and thanks for a great editor.

PS: if you get [*] working for .ini's I can also use [[*]] to color ...
by codeguy
Wed Aug 23, 2006 1:37 am
Forum: General
Topic: MoveLineLeftEdge
Replies: 8
Views: 19699

I hate to be a bug... could I ask one more little change?

Could the MoveLineFirst function make sure the scroll bar is all the way to the left first, and then to go the first word?

On really long lines, that cause the screen to scroll horizontally, when I press home it does go home, but its right ...
by codeguy
Wed Aug 23, 2006 12:13 am
Forum: General
Topic: MoveLineLeftEdge
Replies: 8
Views: 19699

sweet. Thank you.

Ok, have another question. I'm trying to setup highlighting for .ini files.

It mostly works really well!

things like

[section]

highlight ok, but when there is a space, it only highlights up the space:

[highlighted notHighlighted]

Also, I dont understand the "Pattern ...
by codeguy
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 ...