xaizek / vifm (License: GPLv2+) (since 2018-12-07)
Vifm is a file manager with curses interface, which provides Vi[m]-like environment for managing objects within file systems, extended with some useful ideas from mutt.
<root> / src / engine / abbrevs.h (da62dac94402a9a45f9b711d87390a060c129b9d) (2,983B) (mode 100644) [raw]
/* vifm
 * Copyright (C) 2015 xaizek.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
 */

#ifndef VIFM__ENGINE__ABBREVS_H__
#define VIFM__ENGINE__ABBREVS_H__

#include <stddef.h> /* wchar_t */

/* Handler for foreign abbreviations.  Should return NULL on errors. */
typedef wchar_t * (*abbrev_handler)(void *user_data);

/* Registers abbreviation from LHS to RHS.  Overwrites any previously existing
 * abbreviations for LHS.  Returns zero on success or non-zero on memory
 * allocation error. */
int vle_abbr_add(const wchar_t lhs[], const wchar_t rhs[]);

/* Same as vle_abbr_add(), but registers noremap kind of abbreviation. */
int vle_abbr_add_no_remap(const wchar_t lhs[], const wchar_t rhs[]);

/* Registers a new foreign abbreviation.  Returns non-zero on error, otherwise
 * zero is returned. */
int vle_abbr_add_foreign(const wchar_t *lhs, const char *descr, int no_remap,
		abbrev_handler handler, void *user_data);

/* Removes abbreviation by first matching matching str with LHS and, if no
 * matches found, with RHS.  Returns zero on successful removal, otherwise
 * (no abbreviation found) non-zero is returned. */
int vle_abbr_remove(const wchar_t str[]);

/* Expands str if it's a full match for LHS of any of previously registered
 * abbreviations.  Returns NULL is str doesn't match any LHS, otherwise pointer
 * to string managed by the unit is returned. */
const wchar_t * vle_abbr_expand(const wchar_t str[], int *no_remap);

/* Removes all registered abbreviations. */
void vle_abbr_reset(void);

/* Completes names of abbreviations. */
void vle_abbr_complete(const char prefix[]);

/* Provides a description of an abbreviation from its properties.  Returns a
 * newly allocated string. */
char * vle_abbr_describe(const wchar_t rhs[], const char descr[]);

/* Enumerates registered abbreviations.  For the first call *state must be set
 * to NULL.  Returns zero when end of the list is reached (and sets pointers to
 * NULLs), otherwise non-zero is returned.  Do not modify abbreviations between
 * calls. */
int vle_abbr_iter(const wchar_t **lhs, const wchar_t **rhs, const char **descr,
		int *no_remap, void **param);

#endif /* VIFM__ENGINE__ABBREVS_H__ */

/* vim: set tabstop=2 softtabstop=2 shiftwidth=2 noexpandtab cinoptions-=(0 : */
/* vim: set cinoptions+=t0 filetype=c : */
Hints

Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://code.reversed.top/user/xaizek/vifm

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@code.reversed.top/user/xaizek/vifm

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a pull request:
... clone the repository ...
... make some changes and some commits ...
git push origin master