jdkr / textadept-dev-tools

MIT License
5 stars 1 forks source link

Add a quick open for libraries #1

Closed triplejam closed 5 years ago

triplejam commented 6 years ago

This is pretty useful. I think a quick open function for library files would be helpful too.

triplejam commented 6 years ago

I think there are two ways do it. The first would be to search through each library with their individual filters and combine the results into one list. The second would be first being prompted for which library you want to search through and then just searching through that one. I have already implemented the first. I will make a pull request if that way sounds good.

jdkr commented 6 years ago

Hello James, I am glad that you want to do this extension by yourself. Both ways should be ok. Maybe with the first way there will be (depending on the amount of files in the libraries) many entries in the dialog. But since there is a Quick Search it should be ok. If you've tested your implementation you can do a pull request. I'm still struggling with the git-commands ;-)

jdkr commented 6 years ago

And there should be:

jdkr commented 6 years ago

I have thought also a little how to implement this. Maybe the second way by first choosing a library is better, because of two things:

I think also we should avoid to duplicate textadept's code into this module. So maybe you could try to implement the other way (should be even easier), or I will do this sometime later.

For your info how to use pandoc: pandoc README.md -o README.html

Cheers, Johannes

triplejam commented 6 years ago

Ok. I will do it sometime.