Remove unnecessary readme files

This commit is contained in:
Gergely Polonkai 2016-06-29 09:22:36 +02:00
parent 1ee823ee92
commit d37fc9501b
5 changed files with 1 additions and 127 deletions

1
.gitignore vendored
View File

@ -5,3 +5,4 @@
/elpa/archives/
/elpa/gnupg/
/semanticdb/
/elpa/*-readme.txt

View File

@ -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'.

View File

@ -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)

View File

@ -1,56 +0,0 @@
<!doctype html>
<html lang="en">
<head>
<link rel="stylesheet" href="/-/bootstrap/css/bootstrap.css" type="text/css"></link>
<link rel="stylesheet" href="/-/style.css" type="text/css"></link>
<title>marmalade-repo - for all your EmacsLisp needs</title>
</head>
<body>
<div class="navbar">
<div class="navbar-inner">
<ul class="nav pull-right">
<li class="active"><a href="/">marmalade-repo</a></li>
<li><a href="/register-comingsoon">register</a></li>
</ul>
</div>
</div>
<div id="blurb">
<div class="container">
<div class="row">
<h1>marmalade-repo</h1>
<div id="loginform">
<form class="form-horizontal" name="login" action="/login/" method="POST">
<legend>login</legend>
<fieldset>
<div class="control-group">
<label class="control-label" for="username">username:</label>
<input id="username" type="text" name="username"></input>
</div>
<div class="control-group">
<label class="control-label" for="password">password:</label>
<input id="password" type="password" name="password"></input><br></br>
</div>
<div class="control-group">
<div class="controls">
<input class="btn btn-large"
type="submit" name="login" value="login"></input>
</div>
</div>
</fieldset>
</form>
</div>
</div>
</div>
</div>
<footer>
<div>
<ul class="inline">
<li><a href="/terms">terms</a></li>
<li><a href="/docs">docs</a></li>
<li><a href="https://github.com/nicferrier/elmarmalade/issues">issues</a></li>
<li>(C) Nic Ferrier 2013</li>
</ul>
</div>
</footer>
</body>
</html>

View File

@ -1,11 +0,0 @@
This file is an implementation of a minimap sidebar, i.e., a
smaller display of the current buffer on the left side. It
highlights the currently shown region and updates its position
automatically. You can navigate in the minibar by dragging the
active region with the mouse, which will scroll the corresponding
edit buffer. Additionally, you can overlay information from the
tags gathered by CEDET's semantic analyzer.
Simply use M-x minimap-mode to toggle activation of the minimap.
Use 'M-x customize-group RET minimap RET' to adapt minimap to your
needs.