All Projects → Jorengarenar → fauxClip

Jorengarenar / fauxClip

Licence: MIT license
Clipboard support for Vim without +clipboard

Programming Languages

Vim Script
2826 projects

Projects that are alternatives of or similar to fauxClip

Copy-button
copy textview into anywhere
Stars: ✭ 14 (-56.25%)
Mutual labels:  clipboard
natural-language-joint-query-search
Search photos on Unsplash based on OpenAI's CLIP model, support search with joint image+text queries and attention visualization.
Stars: ✭ 143 (+346.88%)
Mutual labels:  clip
Transformer-MM-Explainability
[ICCV 2021- Oral] Official PyTorch implementation for Generic Attention-model Explainability for Interpreting Bi-Modal and Encoder-Decoder Transformers, a novel method to visualize any Transformer-based network. Including examples for DETR, VQA.
Stars: ✭ 484 (+1412.5%)
Mutual labels:  clip
WinPopclip
Popclip alternative for Windows
Stars: ✭ 76 (+137.5%)
Mutual labels:  clipboard
nougat
Screenshot wrapper
Stars: ✭ 20 (-37.5%)
Mutual labels:  clipboard
clip-italian
CLIP (Contrastive Language–Image Pre-training) for Italian
Stars: ✭ 113 (+253.13%)
Mutual labels:  clip
copy-image-clipboard
Lightweight library to copy PNG and JPG images to clipboard
Stars: ✭ 37 (+15.63%)
Mutual labels:  clipboard
unlimited-clipboard
simple clipboard manager with unlimited history on electron
Stars: ✭ 21 (-34.37%)
Mutual labels:  clipboard
Json-to-Dart-Model
marketplace.visualstudio.com/items?itemName=hirantha.json-to-dart
Stars: ✭ 84 (+162.5%)
Mutual labels:  clipboard
video features
Extract video features from raw videos using multiple GPUs. We support RAFT and PWC flow frames as well as S3D, I3D, R(2+1)D, VGGish, CLIP, ResNet features.
Stars: ✭ 225 (+603.13%)
Mutual labels:  clip
ImageClipboard.jl
Copy & Paste images with Julia
Stars: ✭ 33 (+3.13%)
Mutual labels:  clipboard
clipboard-watch
This is height performance clipboard watcher, support windows,osx
Stars: ✭ 21 (-34.37%)
Mutual labels:  clipboard
AsyncClipboardService
📋 An async & low-level windows clipboard service implementation for .NET, C#
Stars: ✭ 14 (-56.25%)
Mutual labels:  clipboard
clipsync-windows
Clipboard which sync with Android and Windows Platform.
Stars: ✭ 20 (-37.5%)
Mutual labels:  clipboard
clipper
📋 Cross Platform Desktop App to Save history of all information you copy and use them whenever with a solitary snap
Stars: ✭ 42 (+31.25%)
Mutual labels:  clipboard
no-clipboard-app
Share your clipboard text to your device like Oculus Go.
Stars: ✭ 12 (-62.5%)
Mutual labels:  clipboard
vqgan-clip-app
Local image generation using VQGAN-CLIP or CLIP guided diffusion
Stars: ✭ 94 (+193.75%)
Mutual labels:  clip
nvim-hclipboard
Hijack your clipboard in Neovim
Stars: ✭ 19 (-40.62%)
Mutual labels:  clipboard
videoclip
Easily create videoclips with mpv.
Stars: ✭ 49 (+53.13%)
Mutual labels:  clip
copypasta
Cross-platform Rust system clipboard library
Stars: ✭ 186 (+481.25%)
Mutual labels:  clipboard

fauxClip

fauxClip is a Vim plugin to provide a pseudo clipboard support for versions of Vim compiled without +clipboard


fauxClip uses

  • xclip (or xsel as fallback)
  • pbcopy / pbpaste
  • clip.exe / powershell.exe Get-Clipboard
  • wl-copy / wl-paste

as default copy and paste command, but you can override either of these if you have more specific needs.

(The following examples utilize defaults for Linux)

  • Copy:
let g:fauxClip_copy_cmd         = 'xclip -f -i -selection clipboard'
let g:fauxClip_copy_primary_cmd = 'xclip -f -i'
  • Paste:
let g:fauxClip_paste_cmd         = 'xclip -o -selection clipboard'
let g:fauxClip_paste_primary_cmd = 'xclip -o'

If you for some reasons don't want to suppress error messages from clipboard command (e.g. xclip's empty clipboard), then:

let g:fauxClip_suppress_errors = 0

If Vim is compiled with +clipboard, but you want to use this plugin regardless, then:

let g:fauxClip_always_use = 1

Installation

minPlug:

MinPlug Jorengarenar/fauxClip

vim-plug:

Plug 'Jorengarenar/fauxClip'

Vim's packages

cd ~/.vim/pack/plugins/start
git clone git://github.com/Jorengarenar/fauxClip.git

Single file

curl --create-dirs -L https://raw.githubusercontent.com/Jorengarenar/fauxClip/master/plugin/fauxClip.vim -o ~/.vim/plugin/fauxClip.vim
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].