How could I make Notepad++ have an intellisense for CodeIgniter 2.0 so that if I press Ctrl + SpaceBar on the keyboard code suggestions would be shown?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Here are the steps:
User Defined Languagederived from the PHP language given that Code Igniter is a PHP Framework.External Lexeris the way to go. It’s a kind of specificPluginmimicking built-in languages features. Install it.Autocompletion is language based and has distinct API files for each language.
Notepad++ offers two types of auto completion:
To trigger them, you must respectively select:
Edit->Auto-Completion->Function CompletionEdit->Auto-Completion->Word CompletionNotepad++ development community is a vibrant one, hopefully you find relevant indepth materials on the web.