On May 10, 3:30 pm, Matt Wilkie <[email protected]> wrote:
This line has misled you > # ^\.bzr$ - ignore files and directories called '.bzr' it only matches .bzr -- this is a directory name that bzr uses The caret in the regex is constraining the match so only the exact string matches, starting at col zero. > ^\.svn$ > ^\.bzr$ drop the caret to match endings (the $) > \.pyc$ > ^.leo.*$ > --------------- Tom -- You received this message because you are subscribed to the Google Groups "leo-editor" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/leo-editor?hl=en.
