... The mouse package does a lot of actions. Position dot, drag window borders, hi-light region, drag hi-lighted region, etc. Do you just want to stop the drag...
While on the topic of mouse edit functions, it would be great if the marked region would scroll when the cursor is past the top of the emacs window or past the...
... All functionality except for drag region stuff. For some reason I can go to a spot (by position dot with mouse) start typing and stuff gets moved or...
Woudl it be possible to add a UI-window-previous? I'm trying to create a function that will take the startup state of emacs (one maximized window) and open a...
I've added UI-window-previous to Emacs. I'll release a new beta in a couple of days with this in. I'll also make the actions of the pc-mouse package ...
I'm a bit slow these days. I recently ended a long time doing analog circuit design and am now spending time picking up programming. Python looks interesting...
I have some docs on the python integration. See "MLisp Programmer's Guide", section "Programming Emacs From Other Languages", subsection "Using Python inside...
... Cool, I guess I have not read the emacs documentation recently. I'm also in the process of writing a program (graphical interface for circuit design) and...
i finally got around to trying to access emacs from python.... the python section of the docs says i need to do 'import bemacs'. well, i tried that, but just...
That is right. Start bemacs then start up python inside bemacs with the Python-console command. You will see a new buffer "Python console" with the line...
ah, i see. i was trying to import bemacs into the pythonwin console. thanks jack Wow!!! Input! Megabytes of input! ... console ... line "bemacs_init.py ... by...
just in case anybody fancies adding buttons and listboxes and all those GUI things... try a copy of gui4cli from: http://users.hol.gr/~dck/g4c/ you can access...
i have defined a hooked abbrev... which works fine, except that it insists on inserting the character that triggered the function. for example, if i type the...
i'm setting up an emacs for a new user... who wanted to be able to undent by using shift-tab. is there any way i can make emacs recognise shift-tab? jack you...
in a text file: this finds the beginnings of words: (ere-search-forward "\\<") this fails to find anything: (ere-search-forward "\\>") is this a bug? or have i...
ok, user error... i needed: (ere-replace-string "^[\t \n]*([^,]*),[\t ]*(.*)" "\\2 \\1") however, undo does not work. jack But it's true, even if it didn't...
I think I've found and fixed the undo problem. I'm guessing that you issued the ere-replace-string from the "minibuf" (on ESC-ESC). delete-buffer is used at...