]> git.proxmox.com Git - mirror_xterm.js.git/blobdiff - src/addons/search/search.ts
Change case of search addon files
[mirror_xterm.js.git] / src / addons / search / search.ts
diff --git a/src/addons/search/search.ts b/src/addons/search/search.ts
deleted file mode 100644 (file)
index 5a227a8..0000000
+++ /dev/null
@@ -1,57 +0,0 @@
-/**
- * @license MIT
- */
-
-import { SearchHelper } from './SearchHelper';
-
-declare var exports: any;
-declare var module: any;
-declare var define: any;
-declare var require: any;
-declare var window: any;
-
-(function (addon) {
-  if ('Terminal' in window) {
-    /**
-     * Plain browser environment
-     */
-    addon(window.Terminal);
-  } else if (typeof exports === 'object' && typeof module === 'object') {
-    /**
-     * CommonJS environment
-     */
-    const xterm = '../../xterm';
-    module.exports = addon(require(xterm));
-  } else if (typeof define == 'function') {
-    /**
-     * Require.js is available
-     */
-    define(['../../xterm'], addon);
-  }
-})((Terminal: any) => {
-  /**
-   * Find the next instance of the term, then scroll to and select it. If it
-   * doesn't exist, do nothing.
-   * @param term Tne search term.
-   * @return Whether a result was found.
-   */
-  Terminal.prototype.findNext = function(term: string): boolean {
-    if (!this._searchHelper) {
-      this.searchHelper = new SearchHelper(this, Terminal.translateBufferLineToString);
-    }
-    return (<SearchHelper>this.searchHelper).findNext(term);
-  };
-
-  /**
-   * Find the previous instance of the term, then scroll to and select it. If it
-   * doesn't exist, do nothing.
-   * @param term Tne search term.
-   * @return Whether a result was found.
-   */
-  Terminal.prototype.findPrevious = function(term: string): boolean {
-    if (!this._searchHelper) {
-      this.searchHelper = new SearchHelper(this, Terminal.translateBufferLineToString);
-    }
-    return (<SearchHelper>this.searchHelper).findPrevious(term);
-  };
-});