Hackerpilot
1dd2baf722
Merge pull request #40 from jwhear/master
...
Fix recursive Ctags
2013-07-26 14:44:33 -07:00
Justin Whear
91c8be08b5
cleanup
2013-07-26 13:32:14 -07:00
Justin Whear
4f32e16e2b
Fix recursive Ctags output
...
Previously using `dscanner --ctags -R <dir>` would output tags without
any filenames, making it pretty useless for navigating in a project.
This was due to all the syntax objects being merged into a single generic
Module, then outputting that module without a filename specified.
This fix does the following:
* Moves the CTag header output from the Module class to the proper spot in
main.d
* Renames `Module.writeCtagsTo` to `getCtags` and now returns string[]
with the prepared tag lines.
* The CTag printing functionality in main.d now gathers all tag lines
from each module, sorts, then outputs.
Note that a more optimal implementation would be fairly straightforward.
Instead of simply returning a string[], `Module.toCtags` could take a
sorted container and insert in sorted order. main.d could pass this
container to each module in turn, then output the results.
2013-07-26 13:05:17 -07:00
Hackerpilot
722f38dd68
Fixed issue #39
2013-07-26 10:31:55 -07:00
Hackerpilot
75a802d51a
Fixed issue #38
2013-03-26 13:26:27 -07:00
Hackerpilot
9d6b96135e
Merge pull request #22 from someboddy/master
...
Created a plugin for Vim
2012-12-12 15:31:57 -08:00
Hackerpilot
f88784b0a5
Fixed bug in findBeginningOfExpression
2012-12-12 15:26:15 -08:00
IdanA
23c1924dc6
Fixes for Windows:
...
I'm now creating the temp file in Unix format. The problem was
calculating the byte position in Windows format - and while it might be
possible, it's much simpler to use Unix format for the temp file.
Also updated the readme.
2012-12-12 17:03:39 +02:00
IdanA
15140e21c2
Fixed things for windows.
2012-12-09 16:14:27 +02:00
IdanArye
0a0b7ff36e
Added some filtering to the dscanner results.
2012-12-05 01:17:31 +02:00
Hackerpilot
036d80f789
Fixed issue #21
2012-11-29 11:38:33 -08:00
IdanArye
8475dc5dfd
Fixed a bug in s:parsePairs.
...
Somtimes Dscanner writes extra data before the results, so we only show
lines with a word, than space, than a single character.
2012-11-25 17:15:01 +02:00
IdanArye
e99268503f
Wrote that it was testes on Linux.
...
I'll test in on Windows when I get the chance.
2012-11-22 13:09:52 +02:00
IdanArye
abf9a0da38
Working
2012-11-22 12:53:53 +02:00
Hackerpilot
8122132e26
More autocomplete improvements
2012-11-13 15:27:25 -08:00
Hackerpilot
0d23da9ea6
Slightly better autocomplete for arrays. It still doesn't work properly
2012-11-13 15:07:08 -08:00
Hackerpilot
22a62bfe84
Added alias declarations to modules, structs, classes, etc. Fixed issue #15
2012-11-13 12:49:02 -08:00
Hackerpilot
688fe8b599
Fixed issue with enum parsing. Removed customization from Textadept module
2012-11-12 14:34:17 -08:00
Hackerpilot
ce3ce23099
Added command-line help
2012-11-11 03:42:02 +00:00
Hackerpilot
851df54c09
Merge pull request #17 from jmaschme/issue16
...
If no file is specified for --dotComplete or --parenComplete, read from ...
2012-11-11 03:18:16 -08:00
Hackerpilot
3054914e2f
Fix issue #20
2012-11-11 03:15:22 +00:00
John Maschmeyer
dd62f275c7
Switched string appends to use appender
2012-10-22 18:46:50 -05:00
Hackerpilot
fcf6578232
Issue #18
2012-10-22 14:49:15 -07:00
John Maschmeyer
ae49c5449c
Made sloc print when using stdin instead of a file.
2012-10-17 18:13:14 -05:00
John Maschmeyer
12e242ca0f
Added stdin as an alternative to a filename for all other modes except for ctags. Ctags requires the filename, so it still requires a filename.
2012-10-17 18:04:48 -05:00
John Maschmeyer
258e10aef6
Cleaned up a few things
2012-10-16 19:35:40 -05:00
John Maschmeyer
224349ac9c
If no file is specified for --dotComplete or --parenComplete, read from stdin instead
2012-10-16 18:54:11 -05:00
Hackerpilot
c25944e85e
Improved autocomplete for pointers
2012-08-26 22:50:28 +00:00
Hackerpilot
9388738f99
Fix issue #14 . The listing of unions was mislabled as 'structs'.
2012-08-01 17:09:03 -07:00
Hackerpilot
100f22e9f9
Updated Textadept documentation
2012-06-22 12:47:34 -07:00
Hackerpilot
de1ff9f24a
Made more code portable to Windows
2012-06-22 12:41:50 -07:00
Hackerpilot
3338104b0f
cleanup
2012-06-22 11:01:05 -07:00
Hackerpilot
5ca27a3f8b
Added VIM readme file
2012-06-22 11:00:43 -07:00
Hackerpilot
fdfbaa97e4
added textadept module
2012-06-22 10:55:47 -07:00
Hackerpilot
7c8d9a39d2
Creating directories for text editor integration code
2012-06-19 10:40:43 -07:00
Hackerpilot
3263589137
fix stupid build error
2012-06-17 18:43:43 +00:00
Hackerpilot
8775d2e968
use buildPath instead of string concat
2012-06-17 18:43:00 +00:00
Hackerpilot
b07e9f94ef
Fixed issue #12 . Fixed support for autocompleting version and scope statements
2012-06-17 17:19:49 +00:00
Hackerpilot
35f68506ea
Fixed index out of bounds error
2012-06-17 12:10:43 +00:00
alaran
53c7f46233
import completion now works
2012-06-17 11:14:15 +00:00
Hackerpilot
c86ab70b07
Added dot completion support for import statements
2012-06-16 20:45:16 -07:00
Hackerpilot
9c8295e013
Call tips for member functons
2012-06-07 11:29:35 -07:00
Hackerpilot
93915f4998
fixed index out of bounds error
2012-06-05 03:24:19 -07:00
Hackerpilot
570f69f64e
Removed debugging from call tips
2012-05-29 10:35:02 -07:00
Hackerpilot
7f50a9ff5d
Typo'd
2012-05-29 10:30:20 -07:00
Hackerpilot
f354b6ec4c
fixed contract parsing. Improved autocomplete. Initial support for call tips
2012-05-29 10:26:26 -07:00
Hackerpilot
dbf2be29b7
More bug fixes
2012-05-24 15:20:20 -07:00
Hackerpilot
50f4660a74
Fixed bug with decimal lexing. Fixed autocomplete bugs
2012-05-24 13:30:52 -07:00
Hackerpilot
cb719a9c36
Autocompletion improvements
2012-05-22 14:48:09 -07:00
Hackerpilot
99dfd0973a
Fixed bug with version statement completion
2012-05-04 14:49:09 -07:00