vote up 2 vote down star

...just like packages do.

I use Emacs (maybe, it can offer some kind of solution).

For example (defun the-very-very-long-but-good-name () ...) is not to useful later in code. But the name like Fn-15 or the first letters abbreviation is not useful too. Is it possible either to have an alias like for packages or to access the documentation string while trying to recall the function's name?

In other words, is it possible for functions to mix somehow self-documenting and short names?

flag

6 Answers

vote up 1 vote down check

If it's all the typing which makes continual use of long names undesirable, then yes, emacs can help. Check out abbrev-mode. Also well thought-of in this context is hippie-expand.

If it's a question of readability, that's harder.

link|flag
vote up 10 vote down

You want defalias. (defalias 'newname oldname) will preserve documentation and even show "newname is an alias for `oldname'" when its documentation is requested.

link|flag
Hm, how to use it? I can't find it in CL-USER and others... – avp Oct 13 '08 at 11:17
Ctrl-H f defalias well get you wehre you need to go. – Jonathan Arkell Oct 13 '08 at 21:35
vote up 0 vote down

you can use (defmacro ...) to alias a function

link|flag
I'd repeat what I've said to leppie. It is just... I don't know... It looks ugly. I mean, it takes effort, but provides just readability. Abbrev-mode & hippie-expand does similar job effortless... But anyway, thanks for input! – avp Nov 18 at 18:32
vote up 0 vote down

I dont know Emacs, but wouldn't (define shortname longnamefunctionblahblah) work?

link|flag
Well... First, it is not automatic. Second, I need to care about it myself. Third, it is clunky... :( – avp Nov 18 at 18:29
vote up -1 vote down

You could simply have a function that just calls another function.

link|flag
You would loose documentation then. – leppie Oct 10 '08 at 16:27
vote up 0 vote down

If your problem is that you can't remember a very long function name, but you remember PART of the name, that's what "apropos" is for. In my Emacs, I have "C-h a" bound to "hyper-apropos". You enter a substring of the symbol you're looking for, and it lists all the matches.

link|flag
My problem is that I want both short names and descriptions, I think. – avp Oct 13 '08 at 11:26

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.