Commit Graph

123 Commits (master)

Author SHA1 Message Date
Jean-Luc Thumm d427501b2c
Fix #924: Checksum isn't up to date in readme (#925)
* Fix #924: Checksum isn't up to date in readme

* Update README.md

Co-authored-by: Pablo Aguiar <scorphus@gmail.com>
1 year ago
fdeitylink 029a67518d packages: allow installing with github 'user/repo' 2 years ago
Emily Grace Seville ab05441000
docs: remove Slack status badge (#883) 2 years ago
Pablo Santiago Blum de Aguiar 05616d85e9 README: Use GitHub for the install script
Relying on some external domain seems like a bad idea after so many
recurring issues. We're certainly better off with a slightly longer URL.

Fix #867
3 years ago
Pablo Santiago Blum de Aguiar 79e1b05494 Update build status badge and link 3 years ago
Pablo Santiago Blum de Aguiar ea1119c61d Standardize documentation header links
Add missing links, reorder alphabetically, and fix spacing issues.
4 years ago
Pablo Santiago Blum de Aguiar a2d744494a README: Fix a typo 4 years ago
Frederick Henderson 5b9c4b4b68
Fixes #738 by changing the git config autocrlf test to check for what… (#742)
Fixes #738 by changing the git config autocrlf test to check for what we do not want to see "false".

Instead of trying to convert the output of git config autocrlf to binary, which will not always work as "input" is also a valid value in addition to true and false, we check for the value false and exit if it is found.
4 years ago
Victorhck 6adc397b75
Spanish translation for Documentation (#724) 4 years ago
Joel Burget 6b2ce5ca80 Update install sha256 in README. 5 years ago
Stephen M. Coakley 97b6b92cdd
Merge pull request #618 from oranja/609-installer-no-carets
Use posix stderr redirection (`2>` instead of `^`)
5 years ago
Anton-Latukha f661906685 README: adding Table of contents 6 years ago
Jan T. Sott d2e3f607cc
fix typo
If I'm not mistaken, this command has been changed to use `plugin`, right?
6 years ago
Itzik Ephraim a6a67be60b Use posix stderr redirection (2> instead of ^)
Fish is deprecating `^` as a shortcut for stderr redirection.
Replace with the more common and compatible `2>`.

Fixes #609
6 years ago
Stephen M. Coakley ce38c3d4e2
use path queries compatible with old fish 6 years ago
Stephen M. Coakley 7592f43dea
fix: smarter AWK detection that supports nawk 6 years ago
Stephen M. Coakley 5943c22650
fix: error with BSD readlink 6 years ago
Stephen M. Coakley 65590470bc fix: #577 add environment sanity checks 7 years ago
Itzik Ephraim b0d97e74b7 README: Add a Known Issues segment 7 years ago
Itzik Ephraim 3d395ada93 README: Add minimum requirements 7 years ago
Itzik Ephraim 70727f441a README: Update Advanced information to fish 2.3+
Notes for fish 2.2 kept in a new subsection.
7 years ago
Dalton Duvio 546606da89 Fixed License link 7 years ago
Necmettin Karakaya 451b8e9d89 omf search update in readme. --pkg to -p
Usage:
  omf search (-p/--plugin | -t/--theme) <name>  Search for a plugin or theme

Examples:
  omf search -p nvm
  omf search -t bobthefish
  omf search vi
7 years ago
Stephen M. Coakley 5eb63f5dfc
Be more careful about restoring backups (fix #509) 7 years ago
Gabriel César 3600f0bddf docs: add Brazilian Portuguese translation 7 years ago
Stephen M. Coakley c67aa9e166 Add SHA256 checksum for installer (#504)
* Add SHA256 checksum for installer

* Fix Travis
7 years ago
Itzik Ephraim ea413d6752 Get oh-my-fish installer from a secure connection.
Use HTTPS schema instead of cleartext HTTP.
SSL certificate provided by letsencrypt.com
Installed on private nginx server for redirection.
7 years ago
Stephen M. Coakley 2d1deeb5fd Replace package database with independently installed package repositories (#427)
Replace package database with independently installed package repositories

- Add support for fetching and installing from package repositories containing package URLs and metadata
- Support multiple package repository sources
- Add new repo command
- Remove submit command
- Enhance describe and search commands
- Fix and improve help text for new and adjusted commands
- Fix bundle install exit status
- Refer to plugins as "plugins" instead of the general term "packages"
- Code clarity improvements
- Put plugin/theme distinction into package metadata
7 years ago
Pablo Santiago Blum de Aguiar b1eee388c1 Docs on how to set variables in `init.fish` (#328)
Fix #328
7 years ago
Andrew Komarnitskyi 0d820b18d7 Translation: Ukrainian version (#464)
* add ukrainian translation

* fix UA translate in readme

* fix UA translation in faq

* fix UA translation in packages.md

* fix documentation link
7 years ago
Stephen M. Coakley a45f85697b Tweak fish version badge (#457) 8 years ago
Stephen M. Coakley 6404410be0 Implement update channels to introduce release versioning (#293) 8 years ago
Stephen M. Coakley 9aae289714 ~ expansion and always setup config in multiple installs (#381) 8 years ago
Stephen M. Coakley 9fa56cf1a2 Tweak readme (#380) 8 years ago
Stephen M. Coakley cfe8e769db Refactor installer and config setup (#361)
Refactor the installer to be more maintainable and interactive. The installer is now more robust and safe in its operation, and asks interactive questions for choices that the user must resolve. Setting up confuguration is also now changed to take advantage of Fish 2.3 features and does not mess with user's configuration files without permission.

- Make installer smarter and use uninstaller in destroy
- Better handling and checking for offline installs
- `omf destroy` simply uses `install --uninstall`
- Final warning message is no longer displayed when user intentionally aborts install
- Backups are restored during uninstall
- Update the README to detail the new ways to install OMF
8 years ago
Stephen M. Coakley 48ace42188 Add keybindings file to dotfiles list (#378)
Fixes #377
8 years ago
Derek Willian Stavis 7c3db938c2 docs: improve headers, use flag emojis for translations (#370) 8 years ago
Derek Willian Stavis a164ebdd5d init: rewrite init process (#260)
* init: rewrite init process

Now use pure globbing to generate 100% valid function and
completion paths, effectively splitting the init process in two
steps, one which paths are added, and other when initialization
is done (sourcing init).

This initialization code introduces a new interface for
`init.fish` hook, which deprecates the previously used event
model. The new interface injects three variables into `init.fish`:
path, package and bundle. This variables can be used by the
package to autoload paths, use bundled files, etc.

Also supports key bindings by sourcing
$OMF_CONFIG/key_bindings.fish and also key_bindings.fish in
packages (plugins and themes) root directories. This is done
when fish_user_key_bindings is called.

* omf: migrate to new init hook

* omf/templates: migrate to new init and uninstall hooks

* docs: document new init and uninstall hooks interface

* README: update new hook interface spec
8 years ago
Luís Fiolhais 15e9af84b1 Search Function (#314)
Add new search command
8 years ago
Luís Fiolhais 0335a806f1
Small Readme Fixes 8 years ago
Derek Stavis a716badfd4 Implement safe shell reloading inside omf plugin
This commit adds an improved reload code for Oh My Fish, besides
saving the history now the reloading technique keeps directory
history and stack and clears fish_greeting, for a transparent
transition.

The reloading code is now safe regarding to background jobs. exec
wipes fish job control, so the user-facing code under the (just-
introduced by this commit) `omf reload` command is kept safe by a
warning. For testing purposes, `omf update` and `omf remove` rolls
automatic refresh only when `OMF_AUTO_RELOAD` variable is set.

Recap of the commit:
- Add improved reload code (omf.reload)
- Add a safe reload code (omf.cli.reload)
- Add `omf reload` command
- Add opt-in reload to `omf update` and `omf remove` commands
8 years ago
Justin Hileman d794969f23 Merge pull request #238 from VEINHORN/master
Add ru-RU docs
8 years ago
Itzik Ephraim fa24e67633 Allow selective updates 8 years ago
Katya Demidova d01435bead Tiny improvements 8 years ago
Katya Demidova d1ec4d7040 Link to docs/packages#uninstall 8 years ago
Katya Demidova 3875132b82 Minor Readme fixes
some grammar/punctuation mistakes
8 years ago
VEINHORN 79850c6b18 Update links in language menus 8 years ago
Bruno Pinto d3760c487d Remove update instructions
Oh My Fish has been stable for many months, we no longer need the update
instructions on the main README.
9 years ago
Derek Stavis ad00a83e37 README: Use SVG logo instead of PNG one
Use rawgit to serve assets with correct Content-Type.
9 years ago
Marek Šuppa 3acfb0d9fc readme: Fix wrong link to FAQ
* The English README.md had a link to FAQ that does not work anymore
  given that it has been localized to `zh-CN` too. This commit makes
  sure that the link to FAQ in the English article points to the correct
  part of the correct file.
9 years ago