MCPcopy Create free account
hub / github.com/clechasseur/pathcopycopy / CanDropRedundantWords

Method CanDropRedundantWords

PathCopyCopy/plugins/src/DefaultPlugin.cpp:77–80  ·  view source on GitHub ↗

Called by Path Copy Copy to know if it should honor the "Drop redundant words" setting for this plugin. In our case, the plugin description comes from resources and since this plugin will always be displayed alone in the main contextual menu, we never want to modify it. @return Always false to indicate PCC should not drop redundant words like "copy" from plugin's description.

Source from the content-addressed store, hash-verified

75 // redundant words like "copy" from plugin's description.
76 //
77 bool DefaultPlugin::CanDropRedundantWords() const noexcept(false)
78 {
79 return false;
80 }
81
82 //
83 // Determines if this plugin is androgynous. In our case, it never is.

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected