diff --git a/.gitignore b/.gitignore index 33d7325..3c30859 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,4 @@ /elpa/archives/ /elpa/gnupg/ /semanticdb/ +/elpa/*-readme.txt diff --git a/elpa/company-readme.txt b/elpa/company-readme.txt deleted file mode 100644 index 3ac8075..0000000 --- a/elpa/company-readme.txt +++ /dev/null @@ -1,36 +0,0 @@ -Company is a modular completion mechanism. Modules for retrieving completion -candidates are called back-ends, modules for displaying them are front-ends. - -Company comes with many back-ends, e.g. `company-elisp'. These are -distributed in separate files and can be used individually. - -Place company.el and the back-ends you want to use in a directory and add the -following to your .emacs: -(add-to-list 'load-path "/path/to/company") -(autoload 'company-mode "company" nil t) - -Enable company-mode with M-x company-mode. For further information look at -the documentation for `company-mode' (C-h f company-mode RET) - -If you want to start a specific back-end, call it interactively or use -`company-begin-backend'. For example: -M-x company-abbrev will prompt for and insert an abbrev. - -To write your own back-end, look at the documentation for `company-backends'. -Here is a simple example completing "foo": - -(defun company-my-backend (command &optional arg &rest ignored) - (pcase command - (`prefix (when (looking-back "foo\\>") - (match-string 0))) - (`candidates (list "foobar" "foobaz" "foobarbaz")) - (`meta (format "This value is named %s" arg)))) - -Sometimes it is a good idea to mix several back-ends together, for example to -enrich gtags with dabbrev-code results (to emulate local variables). -To do this, add a list with both back-ends as an element in company-backends. - -Known Issues: -When point is at the very end of the buffer, the pseudo-tooltip appears very -wrong, unless company is allowed to temporarily insert a fake newline. -This behavior is enabled by `company-end-of-buffer-workaround'. \ No newline at end of file diff --git a/elpa/magit-topgit-readme.txt b/elpa/magit-topgit-readme.txt deleted file mode 100644 index d7bed03..0000000 --- a/elpa/magit-topgit-readme.txt +++ /dev/null @@ -1,24 +0,0 @@ -This package provides very basic support for TopGit. - - TopGit is a patch queue manager that aims to make handling - of large amounts of interdependent topic branches easier. - -For information about TopGit see https://github.com/greenrd/topgit. - -When `magit-topgit-mode' is turned on then the list of TopGit -topics is displayed in the status buffer. While point is on such -a topic it can checked out using `RET' and discarded using `k'. -Other TopGit commands are available from the TopGit popup on `T'. - -To enable the mode in a particular repository use: - - cd /path/to/repository - git config --add magit.extension topgit - -To enable the mode for all repositories use: - - git config --global --add magit.extension topgit - -To enable the mode globally without dropping to a shell: - - (add-hook 'magit-mode-hook 'magit-topgit-mode) diff --git a/elpa/markdown-mode-readme.txt b/elpa/markdown-mode-readme.txt deleted file mode 100644 index f264a12..0000000 --- a/elpa/markdown-mode-readme.txt +++ /dev/null @@ -1,56 +0,0 @@ - - -
- - -