|
I want to hide the welcome screen.
My .emacs
(setq c-basic-offset 4) ; indents 4 chars (setq tab-width 4) ; and 4 char wide for TAB (setq indent-tabs-mode nil) ; And force use of spaces (turn-on-font-lock) ; same as syntax on in Vim (setq width (max width...
Started by Masi on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Options -> customize emacs -> top-level customizationAdd the following....
If you already have Emacs open with the welcome screen, you can easily do it through emac's menus...
The welcome screen shouldn't appear.
|
|
I have ssh'ed to a remote machine and started emacs. I opened one small python application, and then split the screen into two, and M-x terminal-emulator in the other. I would like to edit the script in one section, then press C-x o and run it on the ...
Answer Snippets (Read the full thread at stackoverflow):
While at the * terminal* window, C-^ o to switch to other window, and C-^ C-h for more help. .
Will that translate over SSH? If not, bind other-window to another key that will go over SSH .
ALT-X other-window
C-TAB also works locally.
|
|
Hi,
I want to be able to open multiple files with emacs like so: emacs file1 file2
and have the emacs screen -not- be split horizontally when emacs starts up. Opening the files in different buffers is what i expect, with just one of the files displayed...
Answer Snippets (Read the full thread at stackoverflow):
Well, you can set up an (tcsh) alias like so
alias emacs emacs -eval '"(run-with-idle-timer 0 0 your invocation
emacs file1 file2
is translated to
emacs -eval '"(run-with-idle-timer 0 0 (quote (quote delete-other....
|
Ask your Facebook Friends
|
I use Emacs remotely using X-Server in a Windows client and Linux server. I noticed that I can halt it using ctrl-z and then type fg 1 to get it working again. Is there some way that I could get it to halt on the machine that I am on, and then log into...
Started by User1 on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Sometimes I will be at work and have to run out the door leaving my Emacs session connections to the same emacs ....
You can open multiple load files.
You can run emacs as a server, and use emacsclient to connect to it.
|
|
I'm trying to figure out how to use Emacs Code Browser (ECB) and one of the things you can do with it is set ecb-windows-width to decide how wide the ecb windows are. The problem is this sequence:
Frame pops up on screen. ecb-activate gets called, scaled...
Started by numerodix on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
It looks like I've found a workaround.
This doesn't apply to the initial emacs frame (on startup) because your .emacs is read after the frame is already created.
And is run after the frame is created.
|
|
I'm in a class that uses an implementation of Emacs on a school server. I'm on a mac running snow leopard, and I have my own implementation of Emacs on it. To access the server-Emacs, I ssh into the server and launch Emacs from its location there.
I'm...
Started by KLR on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
You either want to run emacs, but you probably want to ssh to the server with an X tunnel, then run emacs there which will pop ....
In general, running emacs inside an emacs is never a good idea.
Best bet.
|
|
I am trying to do a regular expression search-and-replace in Emacs, running in the Terminal program on my MacBook Pro, which is running OS X 10.6.2. As far as I know, this can be done by pressing C-M-% (I am assumimg this means Ctrl+Alt+Shift+5. Please...
Started by mikez302 on
, 4 posts
by 3 people.
Answer Snippets (Read the full thread at superuser):
Unlike GUI-based apps, terminal-based apps (like almost all of those that you run....
Shift - 5 Shift - 5 , emacs will see C-x @ % % , interpret it as C-M-% , and run finally query-command-modifier 'meta) in your .emacs file.
|
|
I've just compiled and installed emacs 23.1 on my mac. It's running Leopard 10.5.8. And I've noticed that dragging and dropping does not work correctly (as it used to work with emacs 22). Now when dragging a file to the emacs icon on the dock, Emacs will...
Started by maciejs on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Here's the link to web version: emacs info about ns events
Also I've found that when....
You will either have to restart Emacs page in emacs info dedicated to Mac OS X builds.
Putting the following in your .emacs file will help.
|
|
If you had a 10 minute hands-on session to teach someone Emacs, what would you show them?
Start emacs: emacs ... Quit emacs: C-x C-c
What else would you have them do between starting and quitting Emacs, while you stood behind them?
Started by melling on
, 10 posts
by 10 people.
Answer Snippets (Read the full thread at stackoverflow):
Open a shell and run some long to teach are those that will enable....
To other buffers, Show Tutorial, Explain Info, Show dired to: open some file, run a command to compress some file on the remote host, copy some file from the remote host.
|
|
There are a bunch of applications out there that integrate Emacs with external processes. GDB is one that comes to mind. I can control GDB from emacs and then get feedback on the screen.
I'd like to do something in that direction with my application.
...
Started by mmccoo on
, 8 posts
by 8 people.
Answer Snippets (Read the full thread at stackoverflow):
To make emacs execute lisp code just create with your application you can ....
In particular, --eval and -f.
For your third bullet, take a look at emacs' command line options.
In general, you should look around in the emacs manual .
|