If you use the code editor / IDE Atom from github then you'll love the time I spent adding the couch tags to the snippets to implement auto completion of couch tags.
If you'd like this too all you have to do is go to File > Snippets... in Atom, and paste the contents of snippets.cson located on my Github
All you have to do is start typing
You must type the first letter after the <cms: for the list to show as the snippets are based on the word after cms: If you'd like to just be able to type that word and have it enter <cms: for you then in the snippets.cson find and replace the
then you'll see the list of possible tags narrow down as you type more of the line. To select a tag press tab. and keep pressing tab for it to place the cursor in place of the parameters. Also has a few default parameter inputs just press tab to complete and if you don't like then delete and/or replace the default text.
Took me a few days, but was well worth it to speed up the time of developing. I just copy and pasted the documents into the description of each tag so that you don't need to look anything up it's all within the edior. Or if something is confusing there is a more button at the bottom of the description modal window which will take you to the tags docs page. Hope yall get some use out of it.
Enjoy.
If you add any tags or fix any mess ups I made, (I'm sure there's a few, I was in a hurry to finish the huge boring task) Either fork the repo and commit your changes/additions or post them here and I'll do that for you since I know git can be confusing if you're not used to it. w
If you'd like this too all you have to do is go to File > Snippets... in Atom, and paste the contents of snippets.cson located on my Github
All you have to do is start typing
- Code: Select all
<cms:*
You must type the first letter after the <cms: for the list to show as the snippets are based on the word after cms: If you'd like to just be able to type that word and have it enter <cms: for you then in the snippets.cson find and replace the
- Code: Select all
'prefix':
- Code: Select all
'body':
then you'll see the list of possible tags narrow down as you type more of the line. To select a tag press tab. and keep pressing tab for it to place the cursor in place of the parameters. Also has a few default parameter inputs just press tab to complete and if you don't like then delete and/or replace the default text.
Took me a few days, but was well worth it to speed up the time of developing. I just copy and pasted the documents into the description of each tag so that you don't need to look anything up it's all within the edior. Or if something is confusing there is a more button at the bottom of the description modal window which will take you to the tags docs page. Hope yall get some use out of it.
Enjoy.
If you add any tags or fix any mess ups I made, (I'm sure there's a few, I was in a hurry to finish the huge boring task) Either fork the repo and commit your changes/additions or post them here and I'll do that for you since I know git can be confusing if you're not used to it. w


