aboutsummaryrefslogtreecommitdiff
path: root/doc/configuration.md
AgeCommit message (Collapse)Author
2020-05-30[Docs] Move the legacy docs to a dedicated dirBozhidar Batsov
2020-04-16Fix code examples markupBozhidar Batsov
2019-11-27Fix a typo (#1472)Damien Cassou
2019-09-04Add projectile-current-on-switch informationLudvig Sundström
I would have liked to see this when checking the docs - I had to look for this longer than I'd wanted.
2019-05-29Use fd when available instead of findDamien Cassou
The patch make fd the default for searching for files in non-DVCS projects.
2019-04-01[Fix #1395] Fix typo in documentation.Carlos Requena López
2019-01-26Add documentation for projectile-sort-orderDaniel Compton
2019-01-01Release Projectile 2.0v2.0.0Bozhidar Batsov
2018-10-28Improve the naming of the indexing methodsBozhidar Batsov
In hindsight I realized that alien and turbo-alien were really bad names (it's hard to tell them apart and understand what makes them different) and I've decided to rename the alien method to hybrid (because this is what it truly is - a hybrid between native and alien indexing) and now turbo-alien becomes simply alien. I hope the users will forgive me yet another big behavioural change, but I think it's fine to do this before having had a stable release with the new indexing method.
2018-10-25Gave an example for projectile-mode-line-functionEmil Marklund
I tried setting the function to something along the lines of the old syntax of customizing projectile-mode-line to "'(:eval (format " Proj[%s]" (projectile-project-name)))" as mentioned in the _stable_ documentation. This confusion cost me about an hour, so I thought giving an example might help somebody else. :)
2018-10-03Rename projectile-mode-line-fn to projectile-mode-line-functionBozhidar Batsov
That's consistent with the rest of the naming we've used so far.
2018-09-29Add a bit of extra documentation on alien indexingBozhidar Batsov
2018-09-29Tweak some formattingBozhidar Batsov
2018-09-29[Fix #1147] Introduce a faster indexing methodBozhidar Batsov
The turbo-alien indexing method optimizes to the limit the speed of the alien indexing method. This means that Projectile will not do any processing of the files returned by the external commands and you're going to get the maximum performance possible. This behaviour makes a lot of sense for most people, as they'd typically be putting ignores in their VCS config and won't care about any additional ignores/unignores/sorting that Projectile might also provide.
2018-09-29Update documentation about mode-linere-mx
2018-09-26[Fix #747] Add a section on projects to the manualBozhidar Batsov
It includes info about supported project types, registering project types and configuring projects.
2018-09-22Add a project switching tip to the docsBozhidar Batsov
2018-09-22Tweak some docsBozhidar Batsov
2018-09-22Add some fresh documentation about the mode-lineBozhidar Batsov
2018-09-21Improve some wording in the manualBozhidar Batsov
2018-09-20Remove some outdated info about the mode line indicatorBozhidar Batsov
2018-08-15Add documentation for function support in project-typesAndreas Marschke
2018-08-08Don't provide any default keymap prefixBozhidar Batsov
Turns out C-c C-p conflicted with many modes, so I think it's best to just leave it to the users to select whatever works best for them.
2018-07-21Change the prefix for the Projectile mode commands to `C-c C-p`Bozhidar Batsov
This brings the default keymap in line with the established Emacs conventions. If someone misses the old keybinding: ``` (setq projectile-keymap-prefix (kbd "C-c p")) ```
2018-07-21Tweak the docs a bitBozhidar Batsov
2018-07-09Remove the support for grizzlBozhidar Batsov
2018-01-03Document options to projectile-register-project-typeAlexandre Héaumé
2017-07-28Use npm install instead of build (#1154)Nick McCurdy
2017-04-23Touch-up documentationBasil L. Contovounesios
* doc/usage.md (projectile-edit-dir-locals): Clarify which file is opened. * doc/configuration.md: Fix code blocks (fix syntax errors, enable syntax highlighting, #'-quote functions). Reword section on directory-local variables.
2017-04-16Specify test suffix and prefix at project type registration (#1127)Evgeniy Sharapov
2016-05-29Fix a couple of linksBozhidar Batsov
2016-05-29Rework our huge read readme into something resembling a manualBozhidar Batsov