Komodo / KomodoEdit

Komodo Edit is a fast and free multi-language code editor. Written in JS, Python, C++ and based on the Mozilla platform.
http://www.komodoide.com/komodo-edit
Other
2.14k stars 299 forks source link

PHP Namespace Completion #3898

Closed ssigwart closed 3 years ago

ssigwart commented 3 years ago
th3coop commented 3 years ago

@ssigwart, I'm very PHP ignorant. Can you provide a very minimal repro for this so I can try it?

ssigwart commented 3 years ago

@th3coop, the following code should trigger autocomplete when you put a space after "namespace". That will trigger the current file path version.

<?php

namespace |

If you want to test other namespaces, you can add other PHP files in the same directory like these:

<?php

namespace MyNs;
<?php

namespace MyNs2;
<?php

namespace MyNs\Subspace;
<?php

namespace MyNs\Subspace\Subsubspace;