Hi All
For those who use emacs I have added smalltalk to ctags. So now you can use tags in emacs to search for the method definition. To do so, you need to get the latest smalltalk-mode.el from: https://github.com/mathk/smalltalk Then build ctags from: https://github.com/mathk/gst-ctags To build the tag file I usally do: smalltalk $ find . -type f -name '*.st' | xargs ctags -a -e Now if you are in emacs, simply hit M-. under the method you whant to search the definition. To visit a tag file: M-x visit-tags-table For more information about emacs tags: M-: (info "(emacs)Tags") HTH -Mathieu _______________________________________________ help-smalltalk mailing list [email protected] http://lists.gnu.org/mailman/listinfo/help-smalltalk
