Hide some internal functions from help

This commit is contained in:
Oliver Blanthorn 2018-07-26 10:45:11 +01:00
parent e0f9fa4e45
commit 041d8f6388
No known key found for this signature in database
GPG key ID: 2BB8C36BB504BFF3

View file

@ -2192,9 +2192,10 @@ export async function yank(...content: string[]) {
await setclip(content.join(" ")) await setclip(content.join(" "))
} }
/** Copies a string to the clipboard/selection buffer depending on the user's preferences /**
* Copies a string to the clipboard/selection buffer depending on the user's preferences
* *
* @hidden * @hidden
*/ */
//#background_helper //#background_helper
async function setclip(str) { async function setclip(str) {
@ -2220,9 +2221,10 @@ async function setclip(str) {
return await Promise.all(promises) return await Promise.all(promises)
} }
/** Fetches the content of the clipboard/selection buffer depending on user's preferences /**
* Fetches the content of the clipboard/selection buffer depending on user's preferences
* *
* @hidden * @hidden
*/ */
//#background_helper //#background_helper
async function getclip() { async function getclip() {