
felp is a short offunctionalhelp, and provides
fuzzyhelp function or “Fuzzy Search on R Help”RStudio Addin?. pseudo-postfix operator to simultaneously display ahelp document and a structure of an object?p pseudo-postfix operator to display document of apackageinstall.packages("felp")source("https://install-github.me/atusy/felp")withfelp::fuzzyhelp() or “Fuzzy Search on R Help”RStudio Addin:

This feature is aShiny app andis also available online athttps://atusy.shinyapps.io/fuzzyhelp/. Note that somefeatures are disabled in the online version (e.g., links between helptopics and syntax highlights). Also, the online version has a limit onthe number of available packages (tidyverse +felp).
There is also a similar project athttps://helpr.atusy.net/ based onWebR. The maindifferences are appearance and the number of available packages.WebR-based projectsupports installing any package on CRAN. Once you type{{ packageName }}:: (e.g.,dplyr::),WebR installs thepackage and you can find help topics in the package (e.g.,dplyr::mutate).
library(felp)# ? operator?help?utils::help# ?. pseudo postfix operator for functions and objectshelp?.utils::help?.# ?p pseudo postfix operator for packagesutils?p# felp as an extention of utils::helpfelp(help)felp("help")felp(utils::help)felp(help, utils)felp(package = utils)