for non-local functions, the name should preferably include a prefix that shows the part of bluefish it is used for. There are, furthermore, many often used abbreviations in the bluefish code, such as:
doc - a function for handling a specific document
bfwin - a function for handling a specific Bluefish window
cb - callback, a function called after a button click or some other event
lcb - local callback, a function called after an event, only used in this .c file
Example function names that show where they are from, what they handle, and/or what they do:
bmark_set_for_doc - bookmark code, sets bookmarks for a document
spell_check_cb - spell check code, this is a callback function (for a button)
project_open_from_file - project code, opens a new project from a given file name