Search found 14 matches

by amif2000
Wed Jul 11, 2007 11:32 am
Forum: Comments and Suggestions
Topic: Word Completion
Replies: 9
Views: 26697

Word Completion

Hi Jussi,

I would like to ask for a new feature in Zeus.
Instead of the project-wide word completion based on ctags, I would like to be able to perform word completion based on words defined in the current document only. The search for possible completions can be dynamic and not based on a database ...
by amif2000
Tue Jan 30, 2007 12:44 pm
Forum: General
Topic: bash blues
Replies: 5
Views: 16718

OK, that sure helped.

Got it to work with %1 = $WDRV and %2 = $PDD. Other macro tags are empty for some reason :shock:

Amit
by amif2000
Tue Jan 30, 2007 12:20 pm
Forum: General
Topic: bash blues
Replies: 5
Views: 16718

Thanks Jussi,

Looks like adding the cygwin bin directory to the PATH resolved this problem.
Now, I would like to open bash in the project directory.
I have a small batch that I run:
@echo off
%1
cd %2
bash -i
And I send it $PDR and $PD as arguments. They both turn out to be empty, although I have ...
by amif2000
Tue Jan 30, 2007 6:43 am
Forum: General
Topic: bash blues
Replies: 5
Views: 16718

bash blues

Hi Jussi,

I would like to run Cygwin from within Zeus. I added a tool and point it to c:\cygwin\bin\bash.exe with the -i -l arguments, and a normal window option. The window opens, and bash starts at a directory that is not the root directory of my user and doesn't run .bashrc
Running the same from ...
by amif2000
Tue Dec 26, 2006 3:25 pm
Forum: Scripts
Topic: Verilog Beautifier
Replies: 0
Views: 13930

Verilog Beautifier

This is the first part in making a Verilog beautifier in Zeus.

This script will format input/output/inout/reg/wire lines with and without a range modifier.

To change the column where the signal name will be placed, change the line in the script 'local col = xx'

The script runs on the marked area ...
by amif2000
Tue Dec 26, 2006 3:22 pm
Forum: Scripts
Topic: External Diff
Replies: 0
Views: 11507

External Diff

This simple script will take the current buffer and the one to its right (in the tab order) and run an external diff between them.

To use a different diff utility, change the 'local cmd = ...' line.

function key_macro()
screen_update_disable()
local fname1 = get_file_name()
WindowNext()
local ...
by amif2000
Tue Dec 26, 2006 11:00 am
Forum: General
Topic: Scripts
Replies: 4
Views: 12779

Thanks Jussi for the quick reply

That is a great idea. I have add the new "Scripts" folder.
Cool. BTW, the folder is locked :cry:

You can configure this via the Zeus.INI file. For more details bring up the Zeus help and use the Index search option to search for the Network Settings topic ...
by amif2000
Tue Dec 26, 2006 6:49 am
Forum: General
Topic: Scripts
Replies: 4
Views: 12779

Scripts

Hi Jussi,
Just a few questions regarding scripting:
1. Please consider adding TCL/Tk scripting to Zeus (pretty please :)
2. I propose adding a new forum folder entitled "Scripts" for official and user submitted scripts.
3. Can Zeus launch scripts from a directory other than zScripts? We require this ...
by amif2000
Sat Dec 16, 2006 4:40 pm
Forum: General
Topic: Features
Replies: 5
Views: 16286

The View, Function List menu does exactly this. It will search the current file for the Function regular expression defined in the General section of the Options, Document Types menu
Great! what do the other regex entries on the General page do?

Amit
by amif2000
Thu Dec 14, 2006 10:35 am
Forum: General
Topic: Sticky mark
Replies: 1
Views: 8411

Sticky mark

Jussi,

Is there a way to keep the mark after I hit Ctrl-C (copy)?

Amit
by amif2000
Thu Dec 14, 2006 10:27 am
Forum: General
Topic: Column Paste
Replies: 2
Views: 10525

Column Paste

Hi Jussi,

Is there a way to differentiate between text that was copied into the clipboard in column mode or in block mode? I require this to create a script that behaves differently when pasting the text.

Amit
by amif2000
Thu Dec 14, 2006 8:26 am
Forum: General
Topic: column editing
Replies: 4
Views: 15912

Instead of a replace you could do an insert:

just add the line

Code: Select all

local left = get_marked_left()
after

Code: Select all

local top = get_marked_top()
and replace

Code: Select all

MarkDeleteEx()
with

Code: Select all

set_line_pos(top)
set_cursor_pos(left)
Amit
by amif2000
Thu Dec 14, 2006 6:25 am
Forum: General
Topic: Features
Replies: 5
Views: 16286

Thanks for the quick response :)

1. Column mode - edit multiple lines at once a-la UltraEdit.
Are there plans to add this functionality? I'd say this comes high on many user's requests.

6. Outline templates (regex) a-la CodeWright.
Outline mode allows the user to see all functions/procedures ...
by amif2000
Sun Dec 10, 2006 3:27 pm
Forum: General
Topic: Features
Replies: 5
Views: 16286

Features

I'm evaluating Zeus as a replacement to CodeWright for our organization.
Before we commit to Zeus (which is the best low cost editor I looked at so far), I'd like to get some feedback on some missing/broken features of Zeus. They are listed in order of importance from top to bottom.
1. Column mode ...