Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
deanishe committed Jul 17, 2017
0 parents commit 9d5c49e
Show file tree
Hide file tree
Showing 20 changed files with 6,567 additions and 0 deletions.
109 changes: 109 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,109 @@
# d88b
# 8`'8
# .d8888b. .d8888b. d8b .d8888b. 88d888b. 88d888b. .d8888b.
# 88' `88 Y8ooooo. d8P`8b 88' `88 88' `88 88' `88 Y8ooooo.
# 88. .88 88 d8' `8bP 88. .88 88. .88 88. .88 88
# `88888P' `88888P' `888P'`YP `88888P8 88Y888P' 88Y888P' `88888P'
# 88 88
# dP dP dP dP
.DS_Store
._*
Icon


# Dropbox
.dropbox.attr

# dP oo dP
# 88 88
# .d8888b. .d888b88 dP d8888P .d8888b. 88d888b. .d8888b.
# 88ooood8 88' `88 88 88 88' `88 88' `88 Y8ooooo.
# 88. ... 88. .88 88 88 88. .88 88 88
# `88888P' `88888P8 dP dP `88888P' dP `88888P'

*.sublime-project
*.sublime-workspace
.idea
.tags
.tags_sorted_by_file
.ropeproject
.project
.pydevproject
.settings
build
dist
.svn
*.swp
*.swo
*.bak
*~
.sass-cache
*.tmlanguage.cache
*.tmPreferences.cache
*.stTheme.cache
Session.vim
.netrwhist


# dP dP
# 88 88
# 88d888b. dP dP d8888P 88d888b. .d8888b. 88d888b.
# 88' `88 88 88 88 88' `88 88' `88 88' `88
# 88. .88 88. .88 88 88 88 88. .88 88 88
# 88Y888P' `8888P88 dP dP dP `88888P' dP dP
# 88 .88
# dP d8888P

# pyenv
.python-version

# Packages
*.egg
*.egg-info/
dist/
build/
eggs/
parts
var/
sdist/
develop-eggs
.installed.cfg

# Installer logs
pip-log.txt

# Unit test / coverage reports
.coverage
.tox

# Compiled Python files
*.py[cod]


# Byte-compiled / optimized / DLL files
__pycache__/
*$py.class

# C extensions
*.so

# Installer logs
pip-log.txt
pip-delete-this-directory.txt

# Unit test / coverage reports
htmlcov/
.tox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*,cover
.hypothesis/

*.log
*.log.1

# Sphinx documentation
docs/_build/
Binary file added Alfred-Errnum-0.1.0.alfredworkflow
Binary file not shown.
1 change: 1 addition & 0 deletions LICENCE.txt
37 changes: 37 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
Alfred Errnum
=============

Alfred 3 workflow to lookup macOS errors.

Extracts errors defined in header files. Search by error number, and view the error name and description.


Usage
-----

- `errno [<number>]` — Search errors by number
- `` or `⌘+<NUM>` — Show error details in Alfred's Large Type window
- `⌘+↩` — Reveal header file in Finder


Licencing, thanks
-----------------

This workflow is released under the [MIT licence][mit].

It is based on the [Alfred-Workflow][aw] library, which is also released under the [MIT licence][mit].

The workflow icon is from [Open Iconic][iconic], also released under the [MIT licence][mit].


Changelog
---------

### 0.1.0 ###

- First release


[mit]: ./src/LICENCE.txt
[aw]: http://www.deanishe.net/alfred-workflow/
[iconic]: https://useiconic.com/open/
1 change: 1 addition & 0 deletions icon.png
21 changes: 21 additions & 0 deletions src/LICENCE.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
The MIT License (MIT)

Copyright (c) 2017 Dean Jackson <deanishe@deanishe.net>

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
Loading

0 comments on commit 9d5c49e

Please sign in to comment.