jed-users mailing list

[2005 Date Index] [2005 Thread Index] [Other years]
[Thread Prev] [Thread Next]      [Date Prev] [Date Next]

Re: Problems & Questions


V01D <phreakuencies@xxxxxxxxx> wrote:
>Anyone could tell me if any of these are really bugs? And how could I 
>change what I need in each item?

I would not say these are bugs.  Most of your request can be
accomplished by putting the appropriate lines in your .jedrc file.

>- Select menus by using space (' '), not by using ENTER (is this 
>hardcoded into the jed binary? I can't find any binding to ENTER key)

  definekey ("select_menu_item", " ", "menu");

>- The backtick '`' seems to work only when I press the key twice (If I 
>disable mute keys, the normal tick ('´') gets printed when I press the 
>key at once. Show key tells me that ` has the "quoted_insert" binding.
>I'd wish to print the backtick with one keypress.

  setkey ("self_insert_cmd", "`");

[...]
>works fine. But with perl_mode_hook I have to use 'variable Perl_Indent 
>= 2;' because just doing 'Perl_Indent = 2;' makes jed complain about an 
>undefined variable. I think that using 'variable' declares a local var, 
>therefore the problem. Is there a fix for this?

Use

  variable Perl_Indent = 2;

outside the function.  That way it will be global.

>- When I switch buffers the cursor gets centered (and the buffer scrolls 
>with it). How can I make the buffer and cursor stay right where I left 
>it after switching?

Buffers and windows are decoupled.  Eventually I will add some sort of
"memory" to windows about where a buffer was placed but it is not high
on my list of priorities.  It would happen sooner if a simple patch
were submitted.

>- How can I use a transparent color? If I use the nano editor, for 
>example, from within mrxvt console, with transparency on, I can see my 
>fluxbox background. The only program that inhibits this transparency is 
>jed. Don't know why.

  Use "default" as the background color for your color scheme.  Try,
e.g., the "default1" color scheme:

   set_color_scheme ("default1");

>- Is there a way to align to the right the time display on the status bar?

  That would require some sort of absolute positioning syntax to be
  added to the `set_status_line` function, which is not supported.

>- Is there a redo on jed?

  Yes.  First press Ctrl-G (or whatever key is bound to `kbd_quit`).
Then press the undo key one or more times.

I hope this helps.

--John


--------------------------
To unsubscribe send email to <jed-users-request@xxxxxxxxxxx> with
the word "unsubscribe" in the message body.
Need help? Email <jed-users-owner@xxxxxxxxxxx>.


[2005 date index] [2005 thread index]
[Thread Prev] [Thread Next]      [Date Prev] [Date Next]