Column number
Posted: Mon Dec 02, 2013 4:22 pm
hi,
Just start using Zeus today!
how can I add column number for my text files.
Thanks
Just start using Zeus today!
how can I add column number for my text files.
Thanks
Use this forum to ask for help, submit a bug report or make a suggestion.
http://www.zeusedit.com/zBB3/
I'm not sure exactly what functionality you are looking for.how can I add column number for my text files.
Code: Select all
function key_macro()
-- macro only works for read/write documents.
if (is_read_only() == 1) or (is_document() == 0) then
message("This macro can only be used with a writable document.")
beep()
return
end
-- I am not sure it this is the behaviour you are after
if (is_marked() == 1) then
message("This macro would delete that marked area.")
beep()
return
end
screen_update_disable()
-- save the current cursor
cursor_save()
-- write out the current cursor (column) value
write(string.format("%d", get_cursor_pos()))
-- restore cursor
cursor_restore()
screen_update_enable()
end
key_macro() -- run the macro
hi,I'm not sure exactly what functionality you are looking for.
Ok, I now understand what you mean and that is the ruler option.when i open a text file Zeus displays the only row number but not the column number as Ultra edit does.
When it comes to choices I think there are plenty to choose from. A Google search should help.Is there anything else you can recommend?