Igor Parra
Igor Parra

Reputation: 10348

Autocompletion in joe or jed editor

I want to use joe or jed to code in C language. Any way to have autocompletion?

Upvotes: 2

Views: 1245

Answers (2)

Igor Parra
Igor Parra

Reputation: 10348

Ok. In the last hours I have learned the following (Only for jed):

Checking at Guido Gonzato's excellent Quick Reference Guide. we found:

Completion is the automatic expansion of partially-typed words. If your text contains the word frobnication', typingfro' followed by M-/ (M-X dabbrev) will either expand the whole word, or cycle amongst all possible completions.

It works for previously typed keywords.

A better autocompletion can be obtained through complete mode. you will need: Installing modes from Jedmodes.

Upvotes: 2

user149341
user149341

Reputation:

joe and jed are two completely different programs, but the answer is "not really" for both:

  • jed: theoretically yes, but practically no. The home page claims that jed is "extensible in the C-like S-Lang language making the editor completely customizable". You might be able to hack in autocompletion this way, but it'd probably be more work than learning to use a better text editor.

  • joe's documentation claims that you can "complete word in edit buffer by hitting ESC Enter (uses other words in buffer for dictionary)". Which is something, but it's not full autocompletion.

Upvotes: 2

Related Questions